Skip to content

Update dependency tox to v4.34.1 #166

Update dependency tox to v4.34.1

Update dependency tox to v4.34.1 #166

Workflow file for this run

name: "Python CI"
on:
workflow_dispatch:
pull_request:
branches:
- "main"
jobs:
lint:
runs-on: ubuntu-latest
strategy:
matrix:
python:
- "3.11"
- "3.12"
steps:
- name: Checkout
uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6
- name: Run tox
uses: lsst-sqre/run-tox@f05a56903e31b8047eedde87a90b0a79b8157d21 # v1
with:
python-version: ${{ matrix.python }}
tox-envs: "lint"
test:
runs-on: ubuntu-latest
strategy:
matrix:
python:
- "3.11"
- "3.12"
steps:
- name: Checkout
uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6
- name: Run tox
uses: lsst-sqre/run-tox@f05a56903e31b8047eedde87a90b0a79b8157d21 # v1
with:
python-version: ${{ matrix.python }}
tox-envs: "py,coverage-report"