Sync dae module with nixpkgs #28
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Evaluate Flake | |
on: | |
pull_request: | |
branches: ["*"] | |
push: | |
branches: ["main"] | |
jobs: | |
check: | |
name: format check | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Install Nix | |
uses: cachix/install-nix-action@v22 | |
- name: flake check | |
run: | | |
nix flake check | |
shell: bash | |
build: | |
name: build packages | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Install Nix | |
uses: cachix/install-nix-action@v22 | |
- name: build dae | |
run: | | |
nix build .#packages.x86_64-linux.dae | |
shell: bash | |
- name: build daed | |
run: | | |
nix build .#packages.x86_64-linux.daed | |
shell: bash |