Skip to content

refactor: new much cleaner refactor #70

refactor: new much cleaner refactor

refactor: new much cleaner refactor #70

Workflow file for this run

name: Continuous Integration
on:
push:
branches:
- main
pull_request:
branches:
- main
env:
CARGO_TERM_COLOR: always
jobs:
build:
name: Build
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Install dependencies
run: |
sudo apt install libasound2-dev

Check failure on line 22 in .github/workflows/ci.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/ci.yml

Invalid workflow file

You have an error in your yaml syntax on line 22
cargo install cargo-audit
- name: Check build status
run: cargo build --verbose
- name: Check test cases
run: cargo test --verbose
- name: Check linter
run: cargo clippy --verbose -- -Dwarnings
- name: Audit dependencies
run: cargo audit