Test new build stuff
Some checks failed
Build Project / test (push) Failing after 42s

This commit is contained in:
2025-11-04 21:39:53 +00:00
parent 2e9b685789
commit 986ad8f457
3 changed files with 5 additions and 9 deletions

View File

@@ -6,7 +6,7 @@ jobs:
test:
runs-on: ubuntu-latest
container:
image: rust:latest
image: gitea.tobiasmaier.me/tobimai/devcontainer-rust:1.91
services:
db:
image: postgres:latest
@@ -23,12 +23,10 @@ jobs:
- 5432:5432
steps:
- name: Install necessary dependencies
run: apt update && apt install nodejs pkg-config -y
- name: Checkout Code
uses: actions/checkout@v2
- name: Run migrations
run: cargo install sqlx-cli && sqlx migrate run
run: sqlx migrate run
- name: Running cargo build
run: cargo build --release
- name: Running cargo build