Skip to content

Updates to: linting setup, documentation formatting, build environment #281

Updates to: linting setup, documentation formatting, build environment

Updates to: linting setup, documentation formatting, build environment #281

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