name: Test suite on: workflow_dispatch: schedule: # Everyday at 5:00am - cron: '0 5 * * *' pull_request: push: # trying and staging branches are for Bors config branches: - trying - staging env: CARGO_TERM_COLOR: always RUST_BACKTRACE: 1 RUSTFLAGS: "-D warnings" jobs: test-linux: name: Tests on ubuntu-18.04 runs-on: ubuntu-latest container: # Use ubuntu-18.04 to compile with glibc 2.27, which are the production expectations image: ubuntu:18.04 steps: - uses: actions/checkout@v3 - name: Install needed dependencies run: | apt-get update && apt-get install -y curl apt-get install build-essential -y - name: Run test with Rust stable if: github.event_name != 'schedule' uses: actions-rs/toolchain@v1 with: toolchain: stable override: true - name: Run test with Rust nightly if: github.event_name == 'schedule' uses: actions-rs/toolchain@v1 with: toolchain: nightly override: true - name: Cache dependencies uses: Swatinem/rust-cache@v2.2.1 - name: Run cargo check without any default features uses: actions-rs/cargo@v1 with: command: build args: --locked --release --no-default-features --all - name: Run cargo test uses: actions-rs/cargo@v1 with: command: test args: --locked --release --all test-others: name: Tests on ${{ matrix.os }} runs-on: ${{ matrix.os }} strategy: fail-fast: false matrix: os: [macos-12, windows-2022] steps: - uses: actions/checkout@v3 - name: Cache dependencies uses: Swatinem/rust-cache@v2.2.1 - name: Run cargo check without any default features uses: actions-rs/cargo@v1 with: command: build args: --locked --release --no-default-features --all - name: Run cargo test uses: actions-rs/cargo@v1 with: command: test args: --locked --release --all test-all-features: name: Tests all features on cron schedule only runs-on: ubuntu-latest container: # Use ubuntu-18.04 to compile with glibc 2.27, which are the production expectations image: ubuntu:18.04 if: github.event_name == 'schedule' steps: - uses: actions/checkout@v3 - name: Install needed dependencies run: | apt-get update apt-get install --assume-yes build-essential curl - uses: actions-rs/toolchain@v1 with: toolchain: stable override: true - name: Run cargo build with all features uses: actions-rs/cargo@v1 with: command: build args: --workspace --locked --release --all-features - name: Run cargo test with all features uses: actions-rs/cargo@v1 with: command: test args: --workspace --locked --release --all-features # We run tests in debug also, to make sure that the debug_assertions are hit test-debug: name: Run tests in debug runs-on: ubuntu-latest container: # Use ubuntu-18.04 to compile with glibc 2.27, which are the production expectations image: ubuntu:18.04 steps: - uses: actions/checkout@v3 - name: Install needed dependencies run: | apt-get update && apt-get install -y curl apt-get install build-essential -y - uses: actions-rs/toolchain@v1 with: toolchain: stable override: true - name: Cache dependencies uses: Swatinem/rust-cache@v2.2.1 - name: Run tests in debug uses: actions-rs/cargo@v1 with: command: test args: --locked --all clippy: name: Run Clippy runs-on: ubuntu-latest steps: - uses: actions/checkout@v3 - uses: actions-rs/toolchain@v1 with: profile: minimal toolchain: 1.69.0 override: true components: clippy - name: Cache dependencies uses: Swatinem/rust-cache@v2.2.1 - name: Run cargo clippy uses: actions-rs/cargo@v1 with: command: clippy args: --all-targets -- --deny warnings fmt: name: Run Rustfmt runs-on: ubuntu-latest steps: - uses: actions/checkout@v3 - uses: actions-rs/toolchain@v1 with: profile: minimal toolchain: nightly override: true components: rustfmt - name: Cache dependencies uses: Swatinem/rust-cache@v2.2.1 - name: Run cargo fmt # Since we never ran the `build.rs` script in the benchmark directory we are missing one auto-generated import file. # Since we want to trigger (and fail) this action as fast as possible, instead of building the benchmark crate # we are going to create an empty file where rustfmt expects it. run: | echo -ne "\n" > benchmarks/benches/datasets_paths.rs cargo fmt --all -- --check