RFC: Fix for XML files with primary_key/host_key set #55
Workflow file for this run
This file contains hidden or 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: pytest | |
| on: | |
| push: | |
| pull_request: | |
| permissions: | |
| contents: read | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Install dependencies | |
| run: | | |
| sudo apt install mypy python3-pytest \ | |
| flake8 python3-flake8-quotes python3-flake8-import-order \ | |
| python3-gpg python3-passlib | |
| - name: Test with pytest | |
| run: | | |
| pytest |