We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 73fdca8 commit c719e1aCopy full SHA for c719e1a
.github/workflows/pipeline.yml
@@ -3,16 +3,24 @@ name: Pipeline
3
on: [push, pull_request, workflow_dispatch]
4
5
jobs:
6
- lint:
7
- name: Lint
+ check:
+ name: Check
8
runs-on: ubuntu-latest
9
steps:
10
- uses: actions/checkout@v2
11
- name: Install Rye
12
uses: eifinger/setup-rye@v4
13
- - run: |
+ - name: Install Momba
14
+ run: |
15
+ rye sync
16
+ - name: Check Format
17
18
rye fmt --all --check
19
+ - name: Run Linter
20
21
rye lint --all
22
+ - name: Check Types
23
24
rye run check-types
25
26
# test:
0 commit comments