mirror of
https://github.com/hyprwm/hyprwayland-scanner.git
synced 2024-11-07 23:35:58 +01:00
21 lines
444 B
YAML
21 lines
444 B
YAML
name: Build
|
|
|
|
on: [push, pull_request, workflow_dispatch]
|
|
jobs:
|
|
nix:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
|
|
- uses: cachix/install-nix-action@v25
|
|
- uses: DeterminateSystems/magic-nix-cache-action@main
|
|
|
|
# not needed (yet)
|
|
# - uses: cachix/cachix-action@v12
|
|
# with:
|
|
# name: hyprland
|
|
# authToken: '${{ secrets.CACHIX_AUTH_TOKEN }}'
|
|
|
|
- name: Build
|
|
run: nix build -L
|
|
|