forgejo-runner/.forgejo/workflows/test.yml
Earl Warren bf7c0bee7d
[FORGEJO] workflows
docker/build-push-action@v4: Invalid token specified

Cannot read properties of undefined (reading 'replace')

[FORGEJO] secrets are trimmed from output, cope with it
2023-05-22 11:11:57 +02:00

23 lines
407 B
YAML

name: checks
on:
- pull_request
- push
env:
GOPROXY: https://goproxy.io,direct
jobs:
lint:
name: check and test
runs-on: ubuntu-latest
steps:
- uses: actions/setup-go@v3
with:
go-version: 1.20
- uses: actions/checkout@v3
- name: vet checks
run: make vet
- name: build
run: make build
- name: test
run: make test