Merge pull request #105 from salfter/patch-1 #84
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: Tests and Checks | |
on: [push, pull_request] | |
jobs: | |
checks: | |
runs-on: "ubuntu-latest" | |
strategy: | |
matrix: | |
python-version: ['pypy-3.7'] | |
os: ["ubuntu-latest"] | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v2 | |
- name: Setup python | |
uses: actions/setup-python@v2 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Install dependencies | |
run: | | |
python -m pip install --upgrade pip | |
pip install -r test-requirements.txt | |
- name: Conforming code | |
run: | | |
flake8 --config .flake8 . |