This commit is contained in:
parent
d302287dd7
commit
f37f3f4929
1 changed files with 15 additions and 0 deletions
15
.forgejo/workflows/ci.yml
Normal file
15
.forgejo/workflows/ci.yml
Normal file
|
|
@ -0,0 +1,15 @@
|
|||
name: CI
|
||||
|
||||
on:
|
||||
push:
|
||||
pull_request:
|
||||
|
||||
jobs:
|
||||
build:
|
||||
runs-on: docker
|
||||
container:
|
||||
image: golang:1.26
|
||||
steps:
|
||||
- uses: actions/checkout@v4
|
||||
- run: go build ./...
|
||||
- run: go vet ./...
|
||||
Loading…
Add table
Reference in a new issue