add support for moving forward tabs (#860) #882
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 Build | |
on: | |
workflow_dispatch: | |
pull_request: | |
paths: | |
- '**/*.rs' | |
- '.github/workflows/nix-build.yml' | |
- 'nix/**' | |
push: | |
branches: | |
- main | |
paths: | |
- '**/*.rs' | |
- '.github/workflows/nix-build.yml' | |
- 'nix/**' | |
jobs: | |
lints: | |
name: Build | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: DeterminateSystems/nix-installer-action@main | |
- uses: DeterminateSystems/magic-nix-cache-action@main | |
- uses: DeterminateSystems/flake-checker-action@main | |
- run: nix build --max-jobs auto --build-max-jobs auto --print-build-logs |