1
0
mirror of https://github.com/chylex/SMTP-Relay.git synced 2024-10-16 23:42:47 +02:00
SMTP-Relay/.github/workflows/go.yml
Bernhard Froehlich 9051ffddf7
Fix Go CI action
2023-06-16 06:39:24 +00:00

19 lines
295 B
YAML

name: Go
on: [push, pull_request]
jobs:
build:
name: Build
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-go@v4
with:
go-version: 'stable'
- name: Build
run: go build -v .
- name: Test
run: go test -v .