18 lines
360 B
YAML
18 lines
360 B
YAML
on: [push]
|
|
jobs:
|
|
test:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: checkout
|
|
uses: actions/checkout@v3
|
|
|
|
- run: |
|
|
apt update
|
|
apt install sudo
|
|
|
|
- uses: https://github.com/cachix/install-nix-action@v27
|
|
with:
|
|
nix_path: nixpkgs=channel:nixos-unstable
|
|
|
|
- run: nix develop --command just test
|