Skip to content

Add lint task. Pass lint. Score: 10/10 #33

Add lint task. Pass lint. Score: 10/10

Add lint task. Pass lint. Score: 10/10 #33

Workflow file for this run

# ...
name: Build/Test
on: [push]
jobs:
build:
runs-on: ubuntu-20.04
strategy:
matrix:
python-version: [3.8]
steps:
- name: Checkout sources
uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
make deps
- name: Run tox
run: |
make tox