Support for specifying the lifetime with ssh-add #29
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: black | |
on: | |
push: | |
branches: | |
- master | |
pull_request: {} | |
jobs: | |
lint: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-python@v4 | |
with: | |
python-version: '3.10' | |
- name: Install black | |
run: | | |
pip install --upgrade pip | |
python3.10 -m venv env | |
source env/bin/activate | |
pip install black | |
- name: Run black | |
run: | | |
env/bin/black --check --verbose bw_add_sshkeys.py |