Skip to content

Commit c719e1a

Browse files
committed
ci: fix pipeline
1 parent 73fdca8 commit c719e1a

File tree

1 file changed

+11
-3
lines changed

1 file changed

+11
-3
lines changed

.github/workflows/pipeline.yml

Lines changed: 11 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,16 +3,24 @@ name: Pipeline
33
on: [push, pull_request, workflow_dispatch]
44

55
jobs:
6-
lint:
7-
name: Lint
6+
check:
7+
name: Check
88
runs-on: ubuntu-latest
99
steps:
1010
- uses: actions/checkout@v2
1111
- name: Install Rye
1212
uses: eifinger/setup-rye@v4
13-
- run: |
13+
- name: Install Momba
14+
run: |
15+
rye sync
16+
- name: Check Format
17+
run: |
1418
rye fmt --all --check
19+
- name: Run Linter
20+
run: |
1521
rye lint --all
22+
- name: Check Types
23+
run: |
1624
rye run check-types
1725
1826
# test:

0 commit comments

Comments
 (0)