GitBundleRepository._ship: fix behaviour after history rewriting #188
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 Test" | |
# Controls when the workflow will run | |
on: | |
# Trigger the workflow on push or pull request events: | |
push: | |
branches: [ master ] | |
pull_request: | |
# Allow to run this workflow manually from the Actions tab: | |
workflow_dispatch: | |
jobs: | |
tests: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: cachix/install-nix-action@v20 | |
- run: nix build | |
- run: nix flake check |