Skip to content

CI [2/N]

CI [2/N] #19

Workflow file for this run

on:
push:
branches: [ main ]
pull_request:
branches: [ main, refacto ]
name: Continuous integration
jobs:
check:
name: Check
defaults:
run:
working-directory: ./rust
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest]
rust: [stable]
steps:
- uses: actions/checkout@v2
- uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: ${{ matrix.rust }}
override: true
- name: check
shell: bash
run: |
sudo apt-get update
sudo apt-get install libasound2-dev
cargo check