mailout/.gitea/workflows/push_master.yml
Thomas Maurice dbe6120da6
All checks were successful
build / build (push) Successful in 2m18s
Build and release / build (push) Successful in 11m48s
feat(ci): Adds some CI
2024-02-12 17:32:52 +01:00

20 lines
No EOL
353 B
YAML

name: build
on:
push:
branches:
- master
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
- uses: actions/setup-go@v5
with:
go-version: 1.22
cache: true
- run: go mod tidy
- run: go test -v ./...
- run: go build