mirror of
https://github.com/tadfisher/pass-otp.git
synced 2026-03-02 18:23:49 +01:00
17 lines
346 B
YAML
17 lines
346 B
YAML
name: CI
|
|
on:
|
|
workflow_dispatch:
|
|
pull_request:
|
|
|
|
jobs:
|
|
build:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
- uses: nixbuild/nix-quick-install-action@v9
|
|
with:
|
|
nix_version: 2.4
|
|
nix_conf: experimental-features = nix-command flakes
|
|
- name: nix build
|
|
run: nix -L build .#
|