Skip to content

build: Remove PyPy 3.10 (3.11 required) #3

build: Remove PyPy 3.10 (3.11 required)

build: Remove PyPy 3.10 (3.11 required) #3

Workflow file for this run

name: CI
on: [push, pull_request]
jobs:
build:
if: github.event_name == 'push' || github.event.pull_request.head.repo.full_name != github.repository
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [macos-latest, windows-latest, ubuntu-latest]
python-version: ['3.11', '3.12']
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
cache: pip
cache-dependency-path: pyproject.toml
- run: pip install .[test]
- run: coverage run --source=nightingale -m pytest -W error
- uses: coverallsapp/github-action@v2