Files
sif/.github/workflows/go.yml
Sol Fisher Romanoff cf3569a6ac Add GitHub action
2023-09-14 20:46:44 +03:00

18 lines
312 B
YAML

name: Go
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: '1.20'
- name: Build
run: go build -v ./...