Skip to content

Dev/bench runtime

Dev/bench runtime #196

Workflow file for this run

on:
push:
branches:
- main
pull_request:
name: Unit Tests (libvelosisynth)
jobs:
compile_and_test:
name: "libvelosisynth"
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
submodules: recursive
- uses: actions-rs/toolchain@v1
with:
toolchain: stable
- name: libvelosisynth_clippy
uses: actions-rs/clippy-check@v1
with:
token: ${{ secrets.GITHUB_TOKEN }}
args: --manifest-path ./lib/velosisynth/Cargo.toml -- --deny warnings
- name: libvelosisynth_test
uses: actions-rs/cargo@v1
with:
command: test
args: --manifest-path ./lib/velosisynth/Cargo.toml