Skip to content

Update README.md

Update README.md #5

Workflow file for this run

name: Tests
on:
push:
branches:
- main
pull_request:
branches:
- main
workflow_dispatch:
permissions:
contents: read
concurrency:
group: tests-${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
tests:
runs-on: ubuntu-latest
timeout-minutes: 60
env:
CARGO_BUILD_JOBS: "1"
CARGO_TERM_COLOR: always
RUSTFLAGS: -C debuginfo=0
SKIP_RESOURCE_HEAVY_TESTS: "1"
steps:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@stable
with:
toolchain: 1.86.0
- uses: Swatinem/rust-cache@v2
- name: Verify Docker is available for testcontainers
run: docker info
- name: Run workspace tests
run: cargo test-all --locked