change logic of switching windows on scratchpad #11
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: CI | |
on: | |
- push | |
- pull_request | |
jobs: | |
nix-build: | |
name: Nix build | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: cachix/install-nix-action@v16 | |
- name: Build dependencies | |
run: nix develop --command ghc --version | |
- name: Build weiss-xmonad | |
run: nix build -L | |
- name: Build weiss-xmonad shell | |
run: nix build -L '.#devShells.x86_64-linux.default' |