Skip to content

Merge pull request #105 from salfter/patch-1 #84

Merge pull request #105 from salfter/patch-1

Merge pull request #105 from salfter/patch-1 #84

Workflow file for this run

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 .