We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 191c10c commit ff4dc81Copy full SHA for ff4dc81
.github/workflows/ci.yaml
@@ -16,26 +16,20 @@ env:
16
jobs:
17
ci:
18
name: ci flow
19
- runs-on: self-hosted
20
- container:
21
- image: ubuntu:latest
+ runs-on: ubuntu:latest
22
steps:
23
- uses: actions/checkout@v3
24
# with:
25
# submodules: recursive
26
27
- - name: Install build tools
28
- run: |
29
- apt-get update
30
- apt-get install -y build-essential ca-certificates
31
- name: Set up Go
32
uses: actions/setup-go@v4
33
with:
34
go-version: 1.23.0
35
- cache: true
+ cache: false
36
37
- name: Build Go
38
- run: CGO_ENABLED=1 go build ./...
+ run: go build ./...
39
40
- name: Run Test
41
id: unittest
0 commit comments