Skip to content

Commit e924593

Browse files
authored
fix(gha): only push images on merge/release (#180)
1 parent 43a7a51 commit e924593

File tree

3 files changed

+38
-16
lines changed

3 files changed

+38
-16
lines changed

.github/actions/test/action.yml

+21
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
name: Lint and run tests
2+
3+
description: Lints and runs tests on the codebase, used before builds and on every PR
4+
5+
runs:
6+
using: composite
7+
steps:
8+
- name: Set up Go
9+
uses: actions/setup-go@v3
10+
with:
11+
go-version: 1.23
12+
- name: Lint the codebase
13+
uses: golangci/golangci-lint-action@v3
14+
with:
15+
version: latest
16+
args: -E goimports -E godot --timeout 10m
17+
- name: Run tests
18+
shell: bash
19+
run: |
20+
PICO_SECRET="danger" go test -v ./... -cover -race -coverprofile=coverage.out
21+
go tool cover -func=coverage.out -o=coverage.out

.github/workflows/build.yml

+2-16
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,6 @@ on:
77
- main
88
tags:
99
- v*
10-
pull_request:
11-
branches:
12-
- main
1310

1411
env:
1512
REGISTRY: ghcr.io
@@ -21,21 +18,10 @@ jobs:
2118
test:
2219
runs-on: ubuntu-22.04
2320
steps:
24-
- name: Set up Go
25-
uses: actions/setup-go@v3
26-
with:
27-
go-version: 1.23
2821
- name: Checkout repo
2922
uses: actions/checkout@v3
30-
- name: Lint the codebase
31-
uses: golangci/golangci-lint-action@v3
32-
with:
33-
version: latest
34-
args: -E goimports -E godot --timeout 10m
35-
- name: Run tests
36-
run: |
37-
PICO_SECRET="danger" go test -v ./... -cover -race -coverprofile=coverage.out
38-
go tool cover -func=coverage.out -o=coverage.out
23+
- name: Run tests and lint
24+
uses: ./.github/actions/test
3925
build-main:
4026
runs-on: ubuntu-22.04
4127
needs: test

.github/workflows/test.yml

+15
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
name: Test PRs
2+
3+
on:
4+
pull_request:
5+
branches:
6+
- main
7+
8+
jobs:
9+
test:
10+
runs-on: ubuntu-22.04
11+
steps:
12+
- name: Checkout repo
13+
uses: actions/checkout@v3
14+
- name: Run tests and lint
15+
uses: ./.github/actions/test

0 commit comments

Comments
 (0)