Add explicit iconOnly option for the taskmanager #723
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: "Nix Checks" | |
on: | |
pull_request: | |
paths: | |
- '**/*.nix' | |
- 'flake.lock' | |
- 'script/**' | |
# cancel previous runs when pushing new changes | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }} | |
cancel-in-progress: true | |
jobs: | |
checks: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: cachix/install-nix-action@v22 | |
with: | |
extra_nix_config: "system-features = kvm nixos-test" | |
- run: nix flake check -L --keep-going | |
- run: nix flake check -L --keep-going --override-input plasma-manager . ./examples/homeManagerFlake | |
- run: nix flake check -L --keep-going --override-input plasma-manager . ./examples/systemFlake |