Build with Nix Workflow #67
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 with Nix Workflow | |
on: | |
schedule: | |
- cron: '0 0 * * 1' | |
workflow_dispatch: | |
jobs: | |
build: | |
strategy: | |
matrix: | |
flags: | |
- --cfg async_executor_impl=\"async-std\" --cfg async_channel_impl=\"async-std\" | |
- --cfg async_executor_impl=\"async-std\" --cfg async_channel_impl=\"flume\" | |
- --cfg async_executor_impl=\"tokio\" --cfg async_channel_impl=\"tokio\" | |
- --cfg async_executor_impl=\"tokio\" --cfg async_channel_impl=\"flume\" | |
runs-on: ubuntu-latest | |
timeout-minutes: 60 | |
if: ${{ github.actor != 'dependabot[bot]' }} | |
steps: | |
- uses: styfle/[email protected] | |
name: Cancel Outdated Builds | |
with: | |
all_but_latest: true | |
access_token: ${{ github.token }} | |
- name: Install Nix | |
uses: cachix/install-nix-action@v23 | |
- name: Checkout Repository | |
uses: actions/checkout@v4 | |
- name: Format | |
run: | | |
nix develop -c cargo fmt -- --check | |
- name: Build | |
run: | | |
nix develop -c RUSTFLAGS="${{ matrix.flags }}" cargo build --all-targets --workspace --release --features="logging-utils" | |
- name: Test | |
run: | | |
nix develop -c RUSTFLAGS="${{ matrix.flags }}" cargo test --all-targets --workspace --release --features="logging-utils" | |
- name: Lint | |
run: | | |
nix develop -c RUSTFLAGS="${{ matrix.flags }}" cargo clippy --all-targets --workspace --release --bins --tests --examples --features="logging-utils" -- -D warnings |