mirror of
https://github.com/Blah-IM/blahrs.git
synced 2025-07-04 13:25:33 +00:00
test,ci: validate version of sqlite and fix ci
This commit is contained in:
parent
4108212f34
commit
7b0ca8aa16
2 changed files with 22 additions and 2 deletions
13
.github/workflows/ci.yaml
vendored
13
.github/workflows/ci.yaml
vendored
|
@ -39,15 +39,20 @@ jobs:
|
|||
|
||||
test:
|
||||
strategy:
|
||||
fail-fast: false
|
||||
matrix:
|
||||
rust: [stable, beta]
|
||||
name: Test ${{ matrix.rust }}
|
||||
runs-on: ubuntu-latest
|
||||
# Need libsqlite3-dev >= 3.38.0 (2022-02-22)
|
||||
runs-on: ubuntu-24.04
|
||||
timeout-minutes: 15
|
||||
steps:
|
||||
- name: Checkout
|
||||
uses: actions/checkout@v4
|
||||
|
||||
- name: Install sqlite
|
||||
run: sudo apt-get install --no-install-recommends -y libsqlite3-dev
|
||||
|
||||
- name: Disable high-priority rust-toolchain.toml
|
||||
run: rm rust-toolchain.toml
|
||||
|
||||
|
@ -67,7 +72,11 @@ jobs:
|
|||
run: cargo build --workspace --all-targets
|
||||
|
||||
- name: Test
|
||||
run: cargo test --workspace --all-targets -- --include-ignored
|
||||
run: cargo test --workspace --all-targets
|
||||
|
||||
# WAIT: Next release of `criterion` for `--include-ignored`.
|
||||
- name: Test ignored
|
||||
run: cargo test --workspace --all-targets -- --ignored
|
||||
|
||||
nix-flake:
|
||||
name: Flake package
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue