Skip to content

Commit 313492c

Browse files
committed
chore: remove unnecessary build-essential and add release cache
- Remove apt-get install build-essential from test workflow (gcc is pre-installed on ubuntu-latest runners) - Add Go module caching to release workflow
1 parent 28abc09 commit 313492c

2 files changed

Lines changed: 1 addition & 2 deletions

File tree

.github/workflows/release.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@ jobs:
1717
uses: actions/setup-go@v6
1818
with:
1919
go-version-file: "go.mod"
20+
cache: true
2021
- name: Login to DockerHub
2122
uses: docker/login-action@v4
2223
with:

.github/workflows/test.yml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -40,8 +40,6 @@ jobs:
4040
with:
4141
go-version-file: "go.mod"
4242
cache: true
43-
- name: Install dependencies
44-
run: sudo apt-get install build-essential
4543
- name: Run Test
4644
run: make test
4745
- name: Install goveralls and send coverage

0 commit comments

Comments
 (0)