Skip to content

Bump pypa/gh-action-pypi-publish from 1.8.11 to 1.8.12 #331

Bump pypa/gh-action-pypi-publish from 1.8.11 to 1.8.12

Bump pypa/gh-action-pypi-publish from 1.8.11 to 1.8.12 #331

Workflow file for this run

name: Tests
on:
push:
branches: [main]
pull_request:
jobs:
tests:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
python-version: ["3.10"]
os: ["ubuntu-latest"]
session:
- "test"
- "test_comparison"
- "test_pymc3"
- "test_pymc"
- "test_pymc_jax"
- "test_jax"
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: actions/setup-python@v5
name: Install Python
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install -U pip
python -m pip install -U nox
- name: Run tests
run: |
python -m nox --non-interactive --error-on-missing-interpreter \
--session ${{ matrix.session }}-${{ matrix.python-version }}