Skip to content

Commit e242a3d

Browse files
committed
Updated CI flows
1 parent 1023bf9 commit e242a3d

File tree

3 files changed

+30
-53
lines changed

3 files changed

+30
-53
lines changed
Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,9 +33,8 @@ jobs:
3333
type=raw,value=latest,enable={{is_default_branch}}
3434
type=semver,pattern={{version}}
3535
- name: Build container
36-
uses: docker/build-push-action@v5
36+
uses: docker/build-push-action@v6
3737
with:
3838
push: true
3939
tags: ${{ steps.meta.outputs.tags }}
4040
labels: ${{ steps.meta.outputs.labels }}
41-

.github/workflows/verify-code.yaml

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
name: verify-code
2+
on:
3+
push:
4+
pull_request:
5+
permissions:
6+
contents: read
7+
# Optional: allow read access to pull request. Use with `only-new-issues` option.
8+
# pull-requests: read
9+
jobs:
10+
golangci:
11+
name: lint
12+
runs-on: ubuntu-latest
13+
steps:
14+
- uses: actions/setup-go@v5
15+
with:
16+
go-version: 1.24
17+
- uses: actions/checkout@v4
18+
- name: golangci-lint
19+
uses: golangci/golangci-lint-action@v7
20+
test:
21+
name: go-test
22+
runs-on: ubuntu-latest
23+
steps:
24+
- uses: actions/setup-go@v5
25+
with:
26+
go-version: 1.24
27+
- uses: actions/checkout@v4
28+
- name: test
29+
run: go test -v ./...

.github/workflows/verify-code.yml

Lines changed: 0 additions & 51 deletions
This file was deleted.

0 commit comments

Comments
 (0)