Skip to content

Commit 35d289b

Browse files
committed
add github action
1 parent b1b435a commit 35d289b

File tree

2 files changed

+20
-1
lines changed

2 files changed

+20
-1
lines changed

.github/workflows/action.yml

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
name: CI
2+
3+
on:
4+
push:
5+
branches: [ "main" ]
6+
pull_request:
7+
branches: [ "main" ]
8+
9+
jobs:
10+
build:
11+
12+
runs-on: ubuntu-latest
13+
14+
steps:
15+
- name: Install GNU Guix
16+
uses: PromyLOPh/[email protected]
17+
- uses: actions/checkout@v3
18+
- name: build
19+
run: guix build --file=guix.scm

Makefile.am

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ moddir=$(prefix)/share/guile/site/$(GUILE_EFFECTIVE_VERSION)
1717
godir=$(libdir)/guile/$(GUILE_EFFECTIVE_VERSION)/site-ccache
1818

1919
SOURCES =bytestructure-class.scm
20-
20+
EXTRA_DIST= $(SOURCES) $(TESTS) build-aux/test-driver.scm
2121
TESTS = tests/bytestructure-class.scm
2222

2323
TEST_EXTENSIONS = .scm

0 commit comments

Comments
 (0)