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
11 changes: 11 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -68,6 +68,17 @@ jobs:
- uses: Swatinem/rust-cache@v2
- run: cargo build --release --workspace

test-postgres:
name: Test Postgres (testcontainers)
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@stable
with:
toolchain: "1.85"
- uses: Swatinem/rust-cache@v2
- run: cargo test -p trapfall_db --features postgres --test testcontainers_postgres -- --nocapture

web-build:
name: Web Build
runs-on: ubuntu-latest
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/security.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
- name: Install cargo-audit
run: cargo install cargo-audit@0.22.1 --locked
- name: Run cargo audit
run: cargo audit --ignore RUSTSEC-2023-0071
run: cargo audit --ignore RUSTSEC-2023-0071 --ignore RUSTSEC-2025-0111

npm-audit:
name: npm Audit
Expand Down
Loading
Loading