17 lines
309 B
YAML
17 lines
309 B
YAML
|
|
name: default
|
||
|
|
|
||
|
|
on:
|
||
|
|
push:
|
||
|
|
branches: [main]
|
||
|
|
|
||
|
|
jobs:
|
||
|
|
default:
|
||
|
|
name: ensure tests work
|
||
|
|
runs-on: debian-latest
|
||
|
|
container: docker.io/golang:1.24-alpine
|
||
|
|
steps:
|
||
|
|
- name: checkout
|
||
|
|
uses: https://code.geekeey.de/actions/checkout@1
|
||
|
|
- name: go run
|
||
|
|
run: |
|
||
|
|
go test
|