A
ashley-towns
244cc7d849
All checks were successful
Build Sphinx Docs Set / Build Docs (pull_request) Successful in 22s
Build Project / Build Project (3.10) (pull_request) Successful in 1m4s
Build Project / Build Project (3.11) (pull_request) Successful in 56s
Build Project / Build Project (3.12) (pull_request) Successful in 57s
Build Project / Build Project (3.14) (pull_request) Successful in 1m19s
Test with tox / Test with tox (3.11) (pull_request) Successful in 6m43s
Test with tox / Test with tox (3.10) (pull_request) Successful in 17m23s
Test with tox / Test with tox (3.12) (pull_request) Successful in 11m29s
Test with tox / Test with tox (3.14) (pull_request) Successful in 1m50s
34 lines
732 B
YAML
34 lines
732 B
YAML
name: Test with tox
|
|
|
|
on:
|
|
push:
|
|
branches: [ main ]
|
|
pull_request:
|
|
branches: [ main ]
|
|
|
|
jobs:
|
|
build:
|
|
runs-on: ubuntu-latest
|
|
strategy:
|
|
matrix:
|
|
python-version: ['3.10', '3.11', '3.12', '3.14']
|
|
|
|
name: Test with tox
|
|
steps:
|
|
- name: Check out project
|
|
uses: actions/checkout@v4
|
|
|
|
- name: Set up Python ${{ matrix.python-version }}
|
|
uses: actions/setup-python@v4
|
|
with:
|
|
python-version: ${{ matrix.python-version }}
|
|
|
|
- name: Install tox-gh-actions
|
|
run: |
|
|
python -m pip install --upgrade pip
|
|
python -m pip install tox tox-gh-actions
|
|
|
|
- name: Test with tox
|
|
run: |
|
|
tox
|