Skip to content

Commit 8fd1f45

Browse files
committed
fix actions
1 parent f56b4bc commit 8fd1f45

File tree

1 file changed

+8
-12
lines changed

1 file changed

+8
-12
lines changed

.github/workflows/pyci.yml

Lines changed: 8 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,24 +1,20 @@
1-
name: CI check
1+
ame: Python application
22

3-
on: push
3+
on: [push]
44

55
jobs:
66
build:
77
runs-on: ubuntu-latest
88
steps:
9-
- uses: actions/checkout@v4
9+
- uses: actions/checkout@v2
1010
- name: Set up Python
11-
uses: actions/setup-python@v5
11+
uses: actions/setup-python@v2
1212
with:
13-
python-version: '3.11'
14-
# make depends on uv
13+
python-version: '3.10'
1514
- name: Install dependencies
1615
run: |
1716
pip install uv
18-
make install
19-
- name: Run linter
17+
uv sync
18+
- name: lint
2019
run: |
21-
make lint
22-
- name: Run pytest
23-
run: |
24-
make test
20+
uv run ruff check .

0 commit comments

Comments
 (0)