backend: pass cargo check --all-features (#4946)

This commit is contained in:
Lucas Abel
2024-12-18 12:37:31 +01:00
committed by GitHub
parent d22e369645
commit e32bcd3383
8 changed files with 46 additions and 16 deletions

View File

@@ -48,7 +48,9 @@ jobs:
- name: cargo check
working-directory: ./backend
timeout-minutes: 16
run: SQLX_OFFLINE=true cargo check --all-features
run: |
mkdir -p fake_frontend_build
FRONTEND_BUILD_DIR=$(pwd)/fake_frontend_build SQLX_OFFLINE=true cargo check --all-features
check_ee:
runs-on: ubicloud-standard-8
@@ -125,6 +127,8 @@ jobs:
- name: cargo check
timeout-minutes: 16
working-directory: ./backend
run: SQLX_OFFLINE=true cargo check --all-features
run: |
mkdir -p fake_frontend_build
FRONTEND_BUILD_DIR=$(pwd)/fake_frontend_build SQLX_OFFLINE=true cargo check --all-features