Skip to content

Commit f56b4bc

Browse files
committed
fix actions
1 parent 4b47d89 commit f56b4bc

File tree

1 file changed

+24
-0
lines changed

1 file changed

+24
-0
lines changed

.github/workflows/pyci.yml

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
name: CI check
2+
3+
on: push
4+
5+
jobs:
6+
build:
7+
runs-on: ubuntu-latest
8+
steps:
9+
- uses: actions/checkout@v4
10+
- name: Set up Python
11+
uses: actions/setup-python@v5
12+
with:
13+
python-version: '3.11'
14+
# make depends on uv
15+
- name: Install dependencies
16+
run: |
17+
pip install uv
18+
make install
19+
- name: Run linter
20+
run: |
21+
make lint
22+
- name: Run pytest
23+
run: |
24+
make test

0 commit comments

Comments
 (0)