This repository was archived by the owner on Dec 14, 2025. It is now read-only.
chore(deps): update actions/checkout action to v4 - autoclosed #1
Workflow file for this run
This file contains hidden or 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: | |
| # Run only when pushing to master branch, and making PRs | |
| push: | |
| branches: | |
| - master | |
| pull_request: | |
| jobs: | |
| build: | |
| runs-on: ${{ matrix.os }} | |
| strategy: | |
| matrix: | |
| os: [ubuntu-latest, macos-latest] | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: DeterminateSystems/nix-installer-action@main | |
| - name: Install omnix | |
| run: | | |
| nix --accept-flake-config profile install "github:juspay/omnix" | |
| nix --version | |
| - name: Build all flake outputs | |
| run: om ci run -- -v | |
| - name: What GHC version? | |
| run: nix develop -c ghc --version |