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 202ac9b commit da9964cCopy full SHA for da9964c
.github/workflows/ci.yml
@@ -1,29 +1,22 @@
1
name: ci
2
-
3
on:
4
push:
5
- branches: [ main ]
+ branches: [main]
6
pull_request:
7
8
workflow_dispatch:
9
10
jobs:
11
ci:
12
runs-on: ubuntu-latest
13
steps:
14
- - uses: actions/checkout@v4
15
16
- - name: setup go
17
- uses: actions/setup-go@v5
18
19
- - name: build
20
- run: go build .
21
22
- - name: lint
23
- uses: golangci/[email protected]
24
- with:
25
- version: latest
26
27
- - name: test
28
- run: go test -v ./...
29
+ - uses: actions/checkout@v4
+ - name: setup go
+ uses: actions/setup-go@v5
+ - name: build
+ run: go build .
+ - name: lint
+ uses: golangci/[email protected]
+ with:
+ version: latest
+ - name: test
+ run: go test -v ./...
0 commit comments