Development -> Master (0.10.0-dev) #26
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: Check, test, & build TWM | |
on: | |
pull_request: | |
branches: | |
- master | |
jobs: | |
the-stuff: | |
name: Check, test, & build | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Install Nix | |
uses: DeterminateSystems/nix-installer-action@main | |
- uses: DeterminateSystems/magic-nix-cache-action@main | |
- name: Clippy check | |
run: | | |
nix develop --command \ | |
cargo clippy -- -D clippy::all | |
- name: Build & test # nix build will run tests as configured | |
run: nix build .#twm-dev |