Skip to content

Removed action-rs to dtlonay #17

Removed action-rs to dtlonay

Removed action-rs to dtlonay #17

Workflow file for this run

# Runs testing related jobs.
name: test
on:
push:
branches:
- main
pull_request:
types: [opened, reopened, synchronize]
jobs:
test:
name: test ${{matrix.toolchain}} on ${{matrix.os}} with ${{matrix.args}}
runs-on: ${{matrix.os}}-latest
strategy:
fail-fast: false
matrix:
toolchain: [stable, nightly]
os: [ubuntu]
args: ["default", "prove"]
timeout-minutes: 30
steps:
- uses: actions/checkout@v4
- name: Install Rust
- uses: dtolnay/rust-toolchain@stable
- uses: davidB/rust-cargo-make@v1
- name: cargo make - test
run: cargo make test-${{matrix.args}}