Skip to content

chore: github stuff #12

chore: github stuff

chore: github stuff #12

Workflow file for this run

name: CI
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
env:
CARGO_TERM_COLOR: always
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install dependencies
run: sudo apt install libasound2-dev
- name: Install Rust 1.80
uses: actions-rs/toolchain@v1
with:
toolchain: 1.80.0
override: true
components: rustfmt, clippy
- uses: LoliGothick/clippy-check@master
with:
token: ${{ secrets.GITHUB_TOKEN }}
- name: Build
run: cargo build --verbose
- name: Run tests
run: cargo test --verbose