Skip to content

Commit 16e3214

Browse files
committed
migrate to github actions
1 parent 6f517e4 commit 16e3214

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

.github/workflows/github-actions-test.yml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,14 @@ on: [push]
44
jobs:
55
build:
66
runs-on: ubuntu-latest
7-
container: golang:1.23-bookworm
87
steps:
98
- name: Checkout code
109
uses: actions/checkout@v2
1110

11+
- uses: actions/setup-go@v5
12+
with:
13+
go-version-file: 'go.mod'
14+
1215
- run: make setup
1316
- run: make install
1417

@@ -24,4 +27,6 @@ jobs:
2427
services:
2528
redis:
2629
image: redis
30+
ports:
31+
- 6379:6379
2732

0 commit comments

Comments
 (0)