Skip to content

Tests

Tests #1459

Workflow file for this run

name: Tests
permissions:
contents: read
on:
schedule:
- cron: "0 0 * * *" # Midnight of each day
jobs:
tests:
name: Test Suite
runs-on: ubuntu-latest
strategy:
matrix:
toolchain:
- stable
- nightly
steps:
- name: Checkout sources
uses: actions/checkout@eef61447b9ff4aafe5dcd4e0bbf5d482be7e7871
with:
persist-credentials: false
- name: Install toolchain
uses: dtolnay/rust-toolchain@master
with:
toolchain: ${{ matrix.toolchain }}
- name: Run cargo test - debug
run: cargo test --all-features
- name: Run cargo test - release
run: cargo test --release --all-features