Skip to content

Merge pull request #30 from jwodder/gh-29 #3

Merge pull request #30 from jwodder/gh-29

Merge pull request #30 from jwodder/gh-29 #3

Workflow file for this run

name: Continuous Integration
on: [pull_request, push]
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
run_tox:
name: Run tox
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3.0.2
- name: Set up Python 3.11
uses: actions/setup-python@v4.2.0
with:
python-version: 3.11
- name: Install base and testing dependencies
run: |
python -m pip install --upgrade pip
pip install tox
- name: Run Tox
run: tox