Skip to content

Oauth support (#49)

Oauth support (#49) #9

Workflow file for this run

name: Go Build
on:
push:
branches:
- main
jobs:
build:
name: Build
runs-on: ubuntu-latest
steps:
- name: Set up Go 1.x
uses: actions/setup-go@v2
with:
go-version: ^1.21
id: go
- name: Check out code into the Go module directory
uses: actions/checkout@v2
- name: Format
run: gofmt ./pkg
- name: Go Vet
run: go vet ./pkg
- name: Build
run: go build -o ./pkg ./pkg