-
Notifications
You must be signed in to change notification settings - Fork 23
34 lines (31 loc) · 781 Bytes
/
Copy pathnox_ci.yml
File metadata and controls
34 lines (31 loc) · 781 Bytes
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
28
29
30
31
32
33
34
name: CI
on:
push:
branches: [ master ]
workflow_dispatch:
pull_request:
jobs:
ci:
runs-on: ${{ matrix.os }}
strategy:
matrix:
python: [ '3.8', '3.9', '3.13' ]
os: [ ubuntu-latest, windows-latest, macos-14 ]
exclude:
- os: macos-14
python: '3.8'
- os: macos-14
python: '3.9'
fail-fast: false
name: Nox - py ${{ matrix.python-version }} - ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- name: Python Setup
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python }}
architecture: 'x64'
- name: Install nox
run: pip install nox
- name: Run nox
run: nox -s package_installation