artifacts/.forgejo/workflows/default.yml
Louis Seubert ae8d20e174
All checks were successful
default / test artifact actions (push) Successful in 26s
feat: artifact push and pull actions
2026-09-13 19:10:04 +02:00

19 lines
366 B
YAML

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 ./...