Add screenshot #11
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Check that the project can build | |
name: Check build | |
# Check links on the 2nd day of the month. | |
# 2nd as the first letter of this repo is the 2nd letter in the alphabet. | |
on: | |
push: | |
pull_request: | |
schedule: | |
- cron: "0 0 2 * *" | |
jobs: | |
build_and_test: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: actions-rs/toolchain@v1 | |
with: | |
toolchain: stable | |
- name: Install ALSA, adapted from https://stackoverflow.com/a/57728808 | |
run: sudo apt-get install -y libasound2-dev libwebkit2gtk-4.0 | |
- name: Install udev, from https://stackoverflow.com/a/74529205 | |
run: sudo apt-get install -y libudev-dev | |
- uses: actions-rs/cargo@v1 | |
with: | |
command: check | |
args: --release --all-features | |
#- uses: actions-rs/cargo@v1 | |
# with: | |
# command: build | |
# args: --release --all-features | |