Skip to content

Improve test reliability #12

Improve test reliability

Improve test reliability #12

Workflow file for this run

name: Lint
on:
push:
branches: [main]
pull_request:
branches: [main]
env:
CARGO_TERM_COLOR: always
jobs:
lint:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Install dependencies
run: sudo apt update && sudo apt install jackd libjack0 libjack-dev
- name: Lint (No Features)
run: cargo clippy --all-targets --no-default-features -- -D clippy::all
- name: Lint (metadata)
run: cargo clippy --all-targets --no-default-features --features metadata -- -D clippy::all
- name: Cargo Fmt
run: cargo fmt --check