Add support for keys as notes #33
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: mypy | |
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 mypy | |
run: | | |
pip install --upgrade pip | |
python3.10 -m venv env | |
source env/bin/activate | |
pip install mypy types-setuptools | |
- name: Run black | |
run: | | |
env/bin/mypy bw_add_sshkeys.py |