mirror of
https://github.com/mitchellh/zig-overlay.git
synced 2025-02-06 01:12:47 +02:00
15 lines
389 B
YAML
15 lines
389 B
YAML
on: [push, pull_request]
|
|
name: Test
|
|
jobs:
|
|
test:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v3.0.2
|
|
- uses: cachix/install-nix-action@v17
|
|
with:
|
|
nix_path: nixpkgs=channel:nixos-unstable
|
|
- run: nix flake check
|
|
|
|
# Verify the update script WORKS but we don't actually commit anything
|
|
# in the test job.
|
|
- run: ./update
|