Skip to content

Merge pull request #169 from os-climate/build-and-linting-updates #279

Merge pull request #169 from os-climate/build-and-linting-updates

Merge pull request #169 from os-climate/build-and-linting-updates #279

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