set lazy loop to false #74
Workflow file for this run
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
on: [push] | |
name: Ubuntu | |
jobs: | |
check: | |
strategy: | |
matrix: | |
os: [ubuntu-20.04] | |
runs-on: ${{ matrix.os }} | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: ilammy/setup-nasm@v1 | |
- name: Patch azure linux deps | |
run: sudo apt update | |
- name: Install linux deps | |
run: sudo apt-get install libxcb-shape0-dev libxcb-xfixes0-dev libgtk-3-dev libasound2-dev | |
- name: Update Rust | |
run: rustup update | |
- name: cargo build | |
run: cargo build | |
- name: cargo check without default features | |
run: cargo check --no-default-features | |