Compare commits
No commits in common. "3c1bba943e14cb03ff51eb33f630ebd1ac2a66c9" and "196563a95123e64f8a2cb49d158cf10078fef7e5" have entirely different histories.
3c1bba943e
...
196563a951
|
@ -1,27 +0,0 @@
|
||||||
name: Go audit
|
|
||||||
run-name: ${{ gitea.actor }} pushed to main! 🚀
|
|
||||||
on:
|
|
||||||
push:
|
|
||||||
branches: [main]
|
|
||||||
pull_request:
|
|
||||||
branches: [main]
|
|
||||||
jobs:
|
|
||||||
audit:
|
|
||||||
runs-on: ubuntu-latest
|
|
||||||
steps:
|
|
||||||
|
|
||||||
- uses: actions/checkout@v2
|
|
||||||
|
|
||||||
- name: Set up Go
|
|
||||||
uses: actions/setup-go@v2
|
|
||||||
with:
|
|
||||||
go-version: '>=1.22.0'
|
|
||||||
|
|
||||||
- name: Verify dependencies
|
|
||||||
run: go mod verify
|
|
||||||
|
|
||||||
- name: Build
|
|
||||||
run: go build -v ./...
|
|
||||||
|
|
||||||
- name: Run go vet
|
|
||||||
run: go vet ./...
|
|
Loading…
Reference in New Issue