Skip to content

Bump mio from 0.8.9 to 0.8.11 (#16) #22

Bump mio from 0.8.9 to 0.8.11 (#16)

Bump mio from 0.8.9 to 0.8.11 (#16) #22

Workflow file for this run

on:
pull_request:
branches: [main]
push:
branches: [main]
name: test
jobs:
lint:
name: r8
runs-on: ubuntu-latest
steps:
- name: checkout
uses: actions/checkout@v2
- name: install alsa
run: sudo apt-get install libasound2-dev
- name: setup rust toolchain
uses: actions-rs/toolchain@v1
with:
toolchain: stable
- name: run cargo test
uses: actions-rs/cargo@v1
with:
command: test
args: --bins --tests --all-features
- name: run cargo doc test
uses: actions-rs/cargo@v1
with:
command: test
args: --doc --all-features