We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6f517e4 commit 16e3214Copy full SHA for 16e3214
1 file changed
.github/workflows/github-actions-test.yml
@@ -4,11 +4,14 @@ on: [push]
4
jobs:
5
build:
6
runs-on: ubuntu-latest
7
- container: golang:1.23-bookworm
8
steps:
9
- name: Checkout code
10
uses: actions/checkout@v2
11
+ - uses: actions/setup-go@v5
12
+ with:
13
+ go-version-file: 'go.mod'
14
+
15
- run: make setup
16
- run: make install
17
@@ -24,4 +27,6 @@ jobs:
24
27
services:
25
28
redis:
26
29
image: redis
30
+ ports:
31
+ - 6379:6379
32
0 commit comments