Skip to content

Update GH Workflow

Update GH Workflow #2

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@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
cache: pip
- name: Install dependencies
run: pip install -r test_requirements.txt
- name: Run tox
run: tox
env:
TOXENV: ${{ matrix.toxenv }}