Skip to content

Update .guix-authorizations. #31

Update .guix-authorizations.

Update .guix-authorizations. #31

Workflow file for this run

name: Guix channel
on:
push:
branches: [ "main" ]
paths-ignore:
- README.md
- LICENSE
- 'scripts/**'
- 'etc/**'
pull_request:
branches: [ "main" ]
paths-ignore:
- README.md
- LICENSE
- 'scripts/**'
- 'etc/**'
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Guix cache
uses: actions/cache@v3
with:
path: ~/.cache/guix
# use a key that (almost) never matches
key: guix-cache-${{ github.sha }}
restore-keys: |
guix-cache-
- name: Install Guix
id: install-guix
uses: PromyLOPh/guix-install-action@v1
with:
channels: |-
(list
(channel
(name 'small-guix)
(url "https://gitlab.com/orang3/small-guix")
(introduction
(make-channel-introduction
"940e21366a8c986d1e10a851c7ce62223b6891ef"
(openpgp-fingerprint
"D088 4467 87F7 CBB2 AE08 BE6D D075 F59A 4805 49C3"))))
(channel
(name 'pot)
(url "https://github.com/fishinthecalculator/pot")
(branch "main")
(introduction
(make-channel-introduction
"10ed759852825149eb4b08c9b75777111a92048e"
(openpgp-fingerprint
"97A2 CB8F B066 F894 9928 CF80 DE9B E0AC E824 6F08"))))
%default-guix-channel)
- name: Build pot.git
run: guix build -L "${PWD}/.guix/modules" pot.git
- name: Lint pot.git
run: guix lint -L "${PWD}/.guix/modules" pot.git