Skip to content

Commit

Permalink
Add CI to verify Nix build.
Browse files Browse the repository at this point in the history
  • Loading branch information
alexpearce committed Dec 15, 2023
1 parent 16be6e6 commit 684b110
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
on:
pull_request:
push:
branches: [main]

jobs:
lints:
name: Build
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: DeterminateSystems/nix-installer-action@main
# Verify that we can build the escript from the flake.
# This is primarily a test of the Mix dependencies hash being up-to-date
# in the flake.
- run: nix build .

0 comments on commit 684b110

Please sign in to comment.