Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 7 additions & 2 deletions .github/workflows/backend_integration_tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,13 @@ name: Backend - Integration tests

on:
push:
branches: [main]
pull_request: {}
branches:
- main
paths:
- src/backend/**
pull_request:
paths:
- src/backend/**

jobs:
pytest:
Expand Down
11 changes: 8 additions & 3 deletions .github/workflows/backend_lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,13 @@ name: Backend - Lint

on:
push:
branches: [main]
pull_request: {}
branches:
- main
paths:
- src/backend/**
pull_request:
paths:
- src/backend/**

jobs:
lint:
Expand All @@ -15,7 +20,7 @@ jobs:
fetch-depth: 0
clean: true
- name: Run lint checks
uses: chartboost/ruff-action@v1
uses: astral-sh/ruff-action@v3
with:
src: './src/'
version: 0.6.0
11 changes: 8 additions & 3 deletions .github/workflows/backend_typecheck.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,13 @@ name: Backend - Typecheck new files

on:
push:
branches: [main]
pull_request: {}
branches:
- main
paths:
- src/backend/**
pull_request:
paths:
- src/backend/**

jobs:
check:
Expand All @@ -28,4 +33,4 @@ jobs:
uses: jakebailey/pyright-action@v2
with:
version: 1.1.311
extra-args: ${{ steps.get_new_files.outputs.new_py_files }}
extra-args: ${{ steps.get_new_files.outputs.new_py_files }}
9 changes: 7 additions & 2 deletions .github/workflows/backend_unit_tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,13 @@ name: Backend - Unit tests

on:
push:
branches: [main]
pull_request: {}
branches:
- main
paths:
- src/backend/**
pull_request:
paths:
- src/backend/**

jobs:
pytest:
Expand Down
Loading