Files
realDynDNS/.gitea/workflows/ci.yaml
Timo Behrendt 07412bf6c6
Some checks failed
CI / test (pull_request) Failing after 3s
refactor: add sharable action to setup go
2024-04-01 14:50:53 +02:00

25 lines
455 B
YAML

name: CI
on:
- pull_request
env:
GOPATH: /go_path
GOCACHE: /go_cache
RUNNER_TOOL_CACHE: /toolcache
jobs:
testing:
name: test
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: setup_go_from_cache
uses: ./.gitea/actions/setup_go_from_cache
with:
go-version-file: go.mod
- name: build
run: make build
- name: test
run: make test