Skip to content

Commit 89360a0

Browse files
Merge branch 'master' into hpc
2 parents 88e06e0 + 35ab362 commit 89360a0

File tree

6 files changed

+948
-0
lines changed

6 files changed

+948
-0
lines changed

.github/workflows/nix-build.yml

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
name: Nix Build
2+
3+
on:
4+
pull_request:
5+
push:
6+
branches: ["master"]
7+
8+
jobs:
9+
build:
10+
runs-on: ubuntu-latest
11+
12+
steps:
13+
14+
- name: Checkout
15+
uses: actions/checkout@v4
16+
17+
- name: Install nix
18+
uses: cachix/install-nix-action@v31
19+
with:
20+
nix_path: nixpkgs=channel:nixos-unstable
21+
22+
- name: Configure nix
23+
run: |
24+
mkdir -p ~/.config/nix
25+
echo 'accept-flake-config = true' >>~/.config/nix/nix.conf
26+
27+
- name: Check nix build
28+
run: nix build

cabal.project

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
packages:
2+
.

0 commit comments

Comments
 (0)