-
-
Notifications
You must be signed in to change notification settings - Fork 23
57 lines (49 loc) · 1.29 KB
/
mrml-python-main.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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
name: mrml-python
on:
push:
branches:
- main
paths:
- ".github/workflows/mrml-python-main.yml"
- "Cargo.lock"
- "Cargo.toml"
- "packages/mrml-core/**"
- "packages/mrml-python/**"
pull_request:
paths:
- ".github/workflows/mrml-python-main.yml"
- "Cargo.lock"
- "Cargo.toml"
- "packages/mrml-core/**"
- "packages/mrml-python/**"
workflow_dispatch:
permissions:
contents: read
jobs:
testing:
runs-on: ubuntu-latest
concurrency:
group: ${{ github.ref }}-mrml-python
cancel-in-progress: true
steps:
- uses: actions/checkout@v4
# Use deadsnakes until https://github.com/actions/setup-python/issues/771 is closed
- name: Setup Python
uses: deadsnakes/[email protected]
with:
python-version: "3.13"
nogil: true
- name: install cargo toolchain
uses: actions-rs/toolchain@v1
with:
toolchain: stable
profile: minimal
- name: init python venv
run: |
python3 -m pip install --upgrade pip
python3 -m venv env
source env/bin/activate
python3 -m pip install pytest maturin
maturin develop
python3 -m pytest
working-directory: packages/mrml-python