mirror of
https://github.com/ChristianSch/gitea-release-drafter.git
synced 2025-06-15 08:38:14 +00:00
20 lines
348 B
YAML
20 lines
348 B
YAML
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 ./...
|