Skip to content

More linting updates #109

More linting updates

More linting updates #109

Workflow file for this run

---
name: CI
# yamllint disable-line rule:truthy
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
ci:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: 'Set up Python'
uses: actions/setup-python@v2
with:
python-version: '3.9'
- name: 'Install dependencies'
run: |
python -m pip install --upgrade pip
pip install tox
- name: Run auto-tests
run: tox