-
-
Notifications
You must be signed in to change notification settings - Fork 53
52 lines (46 loc) · 1.11 KB
/
test.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
name: Test
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
on:
push:
paths:
- 'src/**'
- 'tests/**'
- 'pyproject.toml'
- 'pdm.lock'
- '.github/workflows/test.yml'
jobs:
test:
name: Test
runs-on: ${{ matrix.os }}
strategy:
matrix:
include:
- os: ubuntu-latest
arch: amd64
- os: ubuntu-latest
arch: arm64
# - os: macos-latest
# arch: amd64
- os: macos-latest
arch: arm64
steps:
- name: Check out the repo
uses: actions/checkout@v4
- name: Install PDM
run: pipx install pdm
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.12'
cache: 'pip'
- name: Run install
run: pdm sync
- name: Run lint
run: pdm run make lint
if: contains(matrix.os, 'ubuntu') && contains(matrix.arch, 'amd64')
- name: Run tests
run: pdm run make test
env:
NODE_API_KEY: ${{ secrets.ALCHEMY_KEY }}