Ignore clippy blocks_in_conditions warning in daemon #5
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
--- | |
name: Build | |
# Trigger the workflow on push or pull request | |
"on": | |
push: | |
branches-ignore: | |
- main | |
pull_request: | |
env: | |
SCCACHE_GHA_ENABLED: "true" | |
RUSTC_WRAPPER: "sccache" | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Setup sccache | |
uses: mozilla-actions/[email protected] | |
with: | |
version: "v0.4.2" | |
- name: Install dependencies | |
run: | | |
sudo apt-get update && \ | |
sudo apt-get install -y \ | |
libpam0g-dev \ | |
libudev-dev \ | |
libssl-dev \ | |
pkg-config \ | |
tpm-udev \ | |
libtss2-dev | |
- name: "Run build" | |
run: cargo build --all-features --all-targets | |
continue-on-error: false |