diff options
author | Mihai Fufezan <[email protected]> | 2023-09-10 21:51:13 +0300 |
---|---|---|
committer | Mihai Fufezan <[email protected]> | 2023-09-12 01:40:57 +0300 |
commit | ed51fe7bac76248933c71d3958fdb9a973066dfd (patch) | |
tree | b815ae1f9f82f80257a057c4dd17a6cc9efa5b7b /.github/workflows/nix-ci.yml | |
parent | bc41d7ec8515723d79cc921454a739d65db69467 (diff) | |
download | Hyprland-ed51fe7bac76248933c71d3958fdb9a973066dfd.tar.gz Hyprland-ed51fe7bac76248933c71d3958fdb9a973066dfd.zip |
CI: add reusable actions
Diffstat (limited to '.github/workflows/nix-ci.yml')
-rw-r--r-- | .github/workflows/nix-ci.yml | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/.github/workflows/nix-ci.yml b/.github/workflows/nix-ci.yml new file mode 100644 index 00000000..fccd4d09 --- /dev/null +++ b/.github/workflows/nix-ci.yml @@ -0,0 +1,13 @@ +name: Nix + +on: [push, pull_request, workflow_dispatch] + +jobs: + wlroots: + uses: ./.github/workflows/nix-update-wlroots.yml + secrets: inherit + + build: + needs: wlroots + uses: ./.github/workflows/nix-build.yml + secrets: inherit |