gitea-release-drafter/.github/workflows/main.yml

20 lines
348 B
YAML
Raw Normal View History

2023-03-05 17:15:22 +01:00
name: Main
on: [push]
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Check out repository
uses: actions/checkout@v2
- name: Install Go
uses: actions/setup-go@v1
with:
go-version: 1.19.x
- name: Build
run: go build -v ./...
- name: Test
run: go test -v ./...