We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2f5ef77 commit a1678dcCopy full SHA for a1678dc
.github/workflows/build.yml
@@ -0,0 +1,21 @@
1
+name: build
2
+on: [ push ]
3
+jobs:
4
+ build:
5
+ name: Build environment
6
+ runs-on: ubuntu-22.04
7
+ steps:
8
+ - name: Guix cache
9
+ uses: actions/cache@v2
10
+ with:
11
+ path: ~/.cache/guix
12
+ # use a key that (almost) never matches
13
+ key: guix-cache-${{ github.sha }}
14
+ restore-keys: |
15
+ guix-cache-
16
+ - name: Install Guix
17
+ uses: PromyLOPh/guix-install-action@v1
18
+ - name: Checkout
19
+ uses: actions/checkout@v2
20
+ - name: Build environment
21
+ run: guix time-machine -C channels.scm -- shell -m manifest.scm -- describe
0 commit comments