Skip to content

Merge pull request #1331 from actix/dependabot/cargo/bytes-1.12.0 #1825

Merge pull request #1331 from actix/dependabot/cargo/bytes-1.12.0

Merge pull request #1331 from actix/dependabot/cargo/bytes-1.12.0 #1825

Workflow file for this run

name: CI
on:
pull_request:
types: [opened, synchronize, reopened]
merge_group:
types: [checks_requested]
push:
branches: [main]
jobs:
build_and_test:
permissions:
contents: read
strategy:
fail-fast: false
matrix:
version: [stable]
name: ${{ matrix.version }}
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6.0.3
with:
persist-credentials: false
- name: Install Rust (${{ matrix.version }})
uses: actions-rust-lang/setup-rust-toolchain@46268bd060767258de96ed93c1251119784f2ab6 # v1.16.1
with:
toolchain: ${{ matrix.version }}
- name: Install system packages
run: |
sudo apt-get update
sudo apt-get -y install sqlite3
sudo apt-get -y install libpq-dev
sudo apt-get -y install redis-server
- name: Install DB CLI tools
run: |
cargo install --force sqlx-cli --no-default-features --features=sqlite,rustls
cargo install --force diesel_cli --no-default-features --features=sqlite,postgres
- name: Create Test DBs
env:
DATABASE_URL: sqlite://./todo.db
run: |
sqlx database create
chmod a+rwx ./todo.db
sqlx migrate run --source=./basics/todo/migrations
- name: Start Redis
run: |
if ! redis-cli ping; then
redis-server --daemonize yes
fi
redis-cli ping
- name: cargo check
run: cargo check --workspace --bins --examples --tests
timeout-minutes: 30
- name: cargo test
run: cargo test --workspace --all-features --no-fail-fast --exclude=db-diesel -- --nocapture
timeout-minutes: 30
- name: cargo test (diesel)
env:
DATABASE_URL: test.db
run: |
cd databases/diesel
diesel migration run
chmod a+rwx test.db
cargo test -p=db-diesel --no-fail-fast -- --nocapture
timeout-minutes: 10
- name: Install cargo-ci-cache-clean
uses: taiki-e/install-action@7a79fe8c3a13344501c80d99cae481c1c9085912 # v2.81.10
with:
tool: cargo-ci-cache-clean
- name: CI cache clean
run: cargo-ci-cache-clean