Added Pytest for ComputeMatrix in synchronization with the Planemo tests #44
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Cargo | |
on: [push, pull_request] | |
jobs: | |
cargo_test: | |
name: run cargo test | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- run: rustup update stable && rustup default stable | |
- name: cargo build | |
run: cargo build --verbose | |
- name: cargo test | |
run: cargo test --verbose |