Skip to content

Commit

Permalink
Add CI/CD workflow to automatically test all targeted versions
Browse files Browse the repository at this point in the history
  • Loading branch information
sarayourfriend committed Nov 8, 2023
1 parent 96fbf6c commit 3ad3b45
Show file tree
Hide file tree
Showing 3 changed files with 96 additions and 26 deletions.
84 changes: 84 additions & 0 deletions .github/workflows/ci_cd.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,84 @@
name: "CI/CD"

on:
pull_request:
push:
branches:
- main


concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
# Don't continue building images for a PR if the PR is updated quickly
# For other workflows, allow them to complete and just block on them. This
# ensures deployments in particular to happen in series rather than parallel.
cancel-in-progress: ${{ github.event_name == 'pull_request' }}

jobs:
flake8:
name: flake8
runs-on: ubuntu-latest

steps:
- name: Checkout repository
uses: actions/checkout@v4
with:
fetch-depth: 0

- name: Setup Python
uses: actions/setup-python@v4
with:
python-version: '3.11'
cache: 'pip'

- name: Install dependencies
run: pip install -r requirements.txt -r requirements-dev.txt

- name: Lint
run: flake8 pook tests

tox:
name: test with ${{ matrix.config.py }}
runs-on: ${{ matrix.config.os }}
strategy:
fail-fast: false
matrix:
config:
- py: "3.11"
os: "ubuntu-22.04"
- py: "3.10"
os: "ubuntu-22.04"
- py: "3.9"
os: "ubuntu-22.04"
- py: "3.8"
os: "ubuntu-22.04"
# <3.8 are not available on ubuntu-latest (22.04)
- py: "3.7"
os: "ubuntu-20.04"
- py: "3.6"
os: "ubuntu-20.04"
- py: "3.5"
os: "ubuntu-20.04"
- py: "pypy3.11"
os: "ubuntu-22.04"

steps:
- name: Checkout repository
uses: actions/checkout@v3
with:
fetch-depth: 0

- name: Setup Python for test ${{ matrix.config.py }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.config.py }}
cache: pip

- name: Install tox
run: python -m pip install tox-gh>=1.2

- name: Setup test suite
run: tox -vv --notest

- name: Run test suite
run: tox --skip-pkg-install
24 changes: 0 additions & 24 deletions .travis.yml

This file was deleted.

14 changes: 12 additions & 2 deletions tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -8,5 +8,15 @@ deps =
-r{toxinidir}/requirements.txt
-r{toxinidir}/requirements-dev.txt
commands =
make lint
make test
pytest

[gh]
python =
3.11 = py311
3.10 = py310
3.9 = py39
3.8 = py38
3.7 = py37
3.6 = py36
3.5 = py35
pypy3.11 = pypy311

0 comments on commit 3ad3b45

Please sign in to comment.