Skip to content

Commit 103b82c

Browse files
authored
Create go.yml
1 parent 170782b commit 103b82c

File tree

1 file changed

+33
-0
lines changed

1 file changed

+33
-0
lines changed

.github/workflows/go.yml

Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
name: Go
2+
3+
on:
4+
push:
5+
branches: [ "main" ]
6+
pull_request:
7+
branches: [ "main" ]
8+
9+
jobs:
10+
11+
build:
12+
runs-on: ubuntu-latest
13+
steps:
14+
- uses: actions/checkout@v4
15+
16+
- name: Set up Go
17+
uses: actions/setup-go@v4
18+
with:
19+
go-version: '1.22'
20+
21+
- uses: dhall-lang/setup-dhall@v4
22+
23+
- uses: denoland/setup-deno@v1
24+
with:
25+
deno-version: v1.x
26+
27+
- uses: typst-community/setup-typst@v3
28+
29+
- name: Build
30+
run: go build -v ./...
31+
32+
- name: Test
33+
run: go test -v ./...

0 commit comments

Comments
 (0)