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
6 changes: 3 additions & 3 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ jobs:
--health-retries 5
strategy:
matrix:
rust: [ 1.76.0, stable, nightly ]
rust: [ 1.85.0, stable, nightly ]
#features: [ --no-default-features, --all-features ]
runs-on: ubuntu-latest
steps:
Expand All @@ -40,7 +40,7 @@ jobs:
toolchain: ${{ matrix.rust }}
components: rustfmt, clippy
- name: Install sqlx-cli
run: cargo install sqlx-cli --no-default-features --features postgres
run: cargo install sqlx-cli --locked --no-default-features --features postgres
- name: Setup DB
working-directory: ./rexecutor-sqlx
run: sqlx database setup
Expand Down Expand Up @@ -81,7 +81,7 @@ jobs:
- name: Install cargo-llvm-cov
uses: taiki-e/install-action@cargo-llvm-cov
- name: Install sqlx-cli
run: cargo install sqlx-cli --no-default-features --features postgres
run: cargo install sqlx-cli --locked --no-default-features --features postgres
- name: Setup DB
working-directory: ./rexecutor-sqlx
run: sqlx database setup
Expand Down
Loading