tangled
alpha
login
or
join now
oeiuwq.com
/
fx.go
0
fork
atom
An Algebraic Effect System for Golang.
0
fork
atom
overview
issues
pulls
pipelines
Add go ci
oeiuwq.com
10 months ago
c2c522f8
bea68856
+22
1 changed file
expand all
collapse all
unified
split
.github
workflows
go.yml
+22
.github/workflows/go.yml
···
1
1
+
name: Build & Test
2
2
+
3
3
+
on:
4
4
+
push:
5
5
+
branches: [ "main" ]
6
6
+
pull_request:
7
7
+
branches: [ "main" ]
8
8
+
9
9
+
jobs:
10
10
+
11
11
+
build:
12
12
+
runs-on: ubuntu-latest
13
13
+
steps:
14
14
+
- uses: actions/checkout@v4
15
15
+
16
16
+
- name: Set up Go
17
17
+
uses: actions/setup-go@v5
18
18
+
with:
19
19
+
go-version: '1.24'
20
20
+
21
21
+
- name: Test
22
22
+
run: go test -v ./...