Merge pull request 'run test from Actions' (#3) from earl-warren/runner:wip-test into main

Reviewed-on: https://codeberg.org/forgejo/runner/pulls/3
pull/2/head
Earl Warren 2023-02-28 23:24:31 +00:00
commit 7aaa64a648
1 changed files with 23 additions and 0 deletions

View File

@ -0,0 +1,23 @@
name: checks
on:
- push
- pull_request
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