artifacts/.forgejo/workflows/default.yml

19 lines
366 B
YAML
Raw Normal View History

2026-09-13 19:10:04 +02:00
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 ./...