Skip to content

chore(ci): update python version in test matrix #564

chore(ci): update python version in test matrix

chore(ci): update python version in test matrix #564

Workflow file for this run

name: Lint and Test
on:
push:
branches-ignore:
- develop
- main
- gh-pages
jobs:
pre-commit:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Python
uses: actions/setup-python@v5
with:
python-version: '3.x'
- run: pip install -r requirements-dev.txt
- name: Run pre-commit
uses: pre-commit/[email protected]
pytest:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [ '3.x', '3.11' ]
name: Test python ${{ matrix.python-version }}
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Python
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- run: pip install -r requirements-dev.txt
- run: pytest --cov-fail-under=100