feat: artifact push and pull actions
All checks were successful
default / test artifact actions (push) Successful in 26s
All checks were successful
default / test artifact actions (push) Successful in 26s
This commit is contained in:
commit
ae8d20e174
15 changed files with 1319 additions and 0 deletions
19
.forgejo/workflows/default.yml
Normal file
19
.forgejo/workflows/default.yml
Normal file
|
|
@ -0,0 +1,19 @@
|
|||
name: default
|
||||
|
||||
on:
|
||||
push:
|
||||
branches: [main]
|
||||
|
||||
jobs:
|
||||
default:
|
||||
name: test artifact actions
|
||||
runs-on: debian-latest
|
||||
container: docker.io/golang:1.24-alpine
|
||||
steps:
|
||||
- name: checkout
|
||||
uses: https://code.geekeey.de/actions/checkout@1
|
||||
- name: go test
|
||||
run: |
|
||||
go mod tidy
|
||||
go mod verify
|
||||
go test ./...
|
||||
Loading…
Reference in a new issue