forked from fpgmaas/deptry
-
Notifications
You must be signed in to change notification settings - Fork 0
34 lines (29 loc) · 831 Bytes
/
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
name: CI
on:
pull_request:
types: [opened, synchronize, reopened]
push:
branches: [main]
concurrency:
group: ${{ github.workflow }}-${{ github.head_ref || github.ref }}
cancel-in-progress: ${{ github.event_name == 'pull_request' }}
jobs:
debug-windows:
runs-on: windows-2022
strategy:
matrix:
target: [x64, aarch64]
python: ['3.12', 'pypy3.10']
steps:
- name: Check out
uses: actions/checkout@v4
- uses: actions/setup-python@v5
id: setup-python
with:
python-version: ${{ matrix.python }}
- name: Build wheels
uses: PyO3/maturin-action@v1
with:
target: ${{ matrix.target }}
args: --release --out dist --interpreter ${{ steps.setup-python.outputs.python-path }}
sccache: 'true'