Skip to content

Added sqlx offline data #5

Added sqlx offline data

Added sqlx offline data #5

Workflow file for this run

name: Cargo Build & Test
on:
push:
pull_request:
env:
CARGO_TERM_COLOR: always
jobs:
build_and_test:
name: PHS Backend - Latest
runs-on: ubuntu-latest
strategy:
matrix:
toolchain:
- stable
- beta
- nightly
steps:
- uses: actions/checkout@v4
- run: rustup update ${{ matrix.toolchain }} && rustup default ${{ matrix.toolchain }}
- run: SQLX_OFFLINE=true cargo build --verbose
- run: SQLX_OFFLINE=true cargo test --verbose