Skip to content

Commit

Permalink
🚀 Fix pipeline
Browse files Browse the repository at this point in the history
  • Loading branch information
BeaverNotACat committed Aug 17, 2024
1 parent 3065930 commit 99ed8c2
Showing 1 changed file with 7 additions and 3 deletions.
10 changes: 7 additions & 3 deletions .github/workflows/pipeline.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ permissions:
contents: read

jobs:
lint:
backend-lint:
runs-on: ubuntu-latest
steps:
- name: 🚚 Get latest code
Expand All @@ -20,14 +20,16 @@ jobs:
python-version: "3.12"

- name: ⬇️ Install dependencies
working-directory: ./backend
run: |
make dev-deps
- name: 🚨 Lint
working-directory: ./backend
run: |
make lint
test:
backend-test:
runs-on: ubuntu-latest
needs: [lint]
steps:
Expand All @@ -40,14 +42,16 @@ jobs:
python-version: "3.12"

- name: ⬇️ Install dependencies
working-directory: ./backend
run: |
make dev-deps
- name: 🚨 Test
working-directory: ./backend
run: |
make lint
deploy:
backend-deploy:
name: deploy
needs: [lint, test]
runs-on: ubuntu-latest
Expand Down

0 comments on commit 99ed8c2

Please sign in to comment.