Skip to content

Dependency Updates

Dependency Updates #20

Workflow file for this run

name: Test
on:
pull_request:
branches:
- development
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.10"]
toxenv: [py310, linting]
steps:
- name: Checkout code
uses: actions/checkout@v5.0.0
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v6.0.0
with:
python-version: ${{ matrix.python-version }}
cache: 'pip'
- name: Install tox
run: pip install tox
- name: Run tox
env:
TOXENV: ${{ matrix.toxenv }}
run: tox