Skip to content

Downscope workflow to 3.9 for now but add TOX instructions and deadsn… #55

Downscope workflow to 3.9 for now but add TOX instructions and deadsn…

Downscope workflow to 3.9 for now but add TOX instructions and deadsn… #55

Workflow file for this run

name: CI
on: [push]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [3.9]
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install tox
run: python -m pip install --upgrade pip tox
- name: Run tox
run: tox -e py${{ matrix.python-version }}