-
Notifications
You must be signed in to change notification settings - Fork 1
36 lines (34 loc) · 833 Bytes
/
cibuild.yml
File metadata and controls
36 lines (34 loc) · 833 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
35
36
name: CI Build
on: [push]
jobs:
build:
runs-on: ubuntu-latest
strategy:
max-parallel: 4
matrix:
python-version: ["3.11", "3.12"]
fail-fast: false
steps:
- name: Check out code
uses: actions/checkout@v1
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v1
with:
python-version: ${{ matrix.python-version }}
- name: Set up pixi package manager
uses: prefix-dev/setup-pixi@v0.8.10
with:
pixi-version: v0.48.2
cache: true
- name: Install
run: |
pixi install
pixi install -e test
pixi run mhpl8r getrefr
- name: Test with pytest
run: |
pixi run test
- name: Style and documentation check
run: |
pixi run style
pixi run docs