Instruction fix for premade key files (#82) #43
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: Continuous Integration | |
on: | |
push: | |
pull_request: | |
jobs: | |
test: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
os: [windows-latest, ubuntu-latest] | |
steps: | |
- uses: actions/checkout@v2.3.1 | |
- uses: actions/setup-python@v2 | |
with: | |
python-version: '3.x' | |
# cache: 'pip' # uncomment when https://github.com/actions/cache/issues/698 fixed | |
- run: pip install -r requirements.txt | |
- run: python -m pytest |