Skip to content

Commit

Permalink
ci: fix pipeline
Browse files Browse the repository at this point in the history
  • Loading branch information
koehlma committed Jul 29, 2024
1 parent 73fdca8 commit c719e1a
Showing 1 changed file with 11 additions and 3 deletions.
14 changes: 11 additions & 3 deletions .github/workflows/pipeline.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,16 +3,24 @@ name: Pipeline
on: [push, pull_request, workflow_dispatch]

jobs:
lint:
name: Lint
check:
name: Check
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Install Rye
uses: eifinger/setup-rye@v4
- run: |
- name: Install Momba
run: |
rye sync
- name: Check Format
run: |
rye fmt --all --check
- name: Run Linter
run: |
rye lint --all
- name: Check Types
run: |
rye run check-types
# test:
Expand Down

0 comments on commit c719e1a

Please sign in to comment.