Skip to content

analyze inputs and states of design #7

analyze inputs and states of design

analyze inputs and states of design #7

Workflow file for this run

name: patron tests
on:
push:
pull_request:
env:
CARGO_TERM_COLOR: always
jobs:
tests:
name: Unit Tests
runs-on: ubuntu-latest
strategy:
matrix:
toolchain:
- stable
- beta
- nightly
steps:
- name: Update Rust to ${{ matrix.toolchain }}
run: rustup update ${{ matrix.toolchain }} && rustup default ${{ matrix.toolchain }}
- uses: actions/checkout@v4
with:
submodules: 'true'
- name: Build
run: cargo build --verbose
- name: Run tests
run: cargo test --verbose