Skip to content

Merge pull request #5 from mdwn/correct-pattern-to-glob #33

Merge pull request #5 from mdwn/correct-pattern-to-glob

Merge pull request #5 from mdwn/correct-pattern-to-glob #33

Workflow file for this run

name: mtrack
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
# Clippy effectively lints the code.
clippy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Update apt
run: sudo apt update
- name: Install alsa
run: sudo apt-get install -y libasound2-dev
- uses: dtolnay/rust-toolchain@stable
with:
components: clippy
- uses: Swatinem/rust-cache@v2
- name: Run clippy
run: cargo clippy --all --all-features
# Make sure the code is properly formatted.
rustfmt-check:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Update apt
run: sudo apt update
- name: Install alsa
run: sudo apt-get install -y libasound2-dev
- uses: dtolnay/rust-toolchain@stable
with:
components: rustfmt
- uses: Swatinem/rust-cache@v2
- name: Run rustfmt
run: cargo fmt --all -- --check
# Make sure the tests pass.
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Update apt
run: sudo apt update
- name: Install alsa
run: sudo apt-get install -y libasound2-dev
- uses: dtolnay/rust-toolchain@stable
- uses: Swatinem/rust-cache@v2
- name: Test mtrack
run: cargo test --all --verbose
# Make sure all code has an appropriate license header.
licensure:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@stable
- name: Install licensure
run: cargo install licensure
- name: Check for licenses
run: licensure --check -p