forked from sparckles/Robyn
-
Notifications
You must be signed in to change notification settings - Fork 0
27 lines (24 loc) · 875 Bytes
/
python-CI.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
# CI to test Robyn on major Linux, MacOS and Windows
on: [push, pull_request]
name: Python Continuous integration
jobs:
tests:
strategy:
fail-fast: false
matrix:
os: ["windows", "ubuntu", "macos"]
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12", "3.13"]
name: ${{ matrix.os }} tests with python ${{ matrix.python-version }}
runs-on: ${{ matrix.os }}-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Set up Nox
uses: wntrblm/[email protected]
with:
python-versions: ${{ matrix.python-version }}
- name: Test with Nox
run: nox --non-interactive --error-on-missing-interpreter -p ${{ matrix.python-version }}