Skip to content

⬆️ Bump actions/upload-artifact from 3.1.2 to 4.3.0 #214

⬆️ Bump actions/upload-artifact from 3.1.2 to 4.3.0

⬆️ Bump actions/upload-artifact from 3.1.2 to 4.3.0 #214

Workflow file for this run

name: Tests
on:
push:
branches:
- main
pull_request:
permissions:
contents: read
jobs:
build:
runs-on: ${{ matrix.os }}
timeout-minutes: 30
strategy:
fail-fast: false
matrix:
python-version: ["3.7", "3.8", "3.9", "3.10", "3.11", "3.12", "pypy-3.8", "pypy-3.9", "pypy-3.10"]
os: [ubuntu-latest, macOS-latest, windows-latest]
include:
# pypy-3.7 on Windows and Mac OS currently fails trying to compile
# cryptography. Moving pypy-3.7 to only test linux.
- python-version: pypy-3.7
os: ubuntu-latest
steps:
- uses: actions/checkout@8ade135a41bc03ea155e62e844d188df1ea18608 # v4.1.0
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@0a5c61591373683505ea898e09a3ea4f39ef2b9c # v5.0.0
with:
python-version: ${{ matrix.python-version }}
cache: 'pip'
- name: Install dependencies
run: |
pip install nox
- name: Run tests
run: |
nox -s "test-${{ startsWith(matrix.python-version, 'pypy') && 'pypy' || matrix.python-version }}"