Skip to content

Merge pull request #196 from solar224/fix/smf-oauth2-callback-token #712

Merge pull request #196 from solar224/fix/smf-oauth2-callback-token

Merge pull request #196 from solar224/fix/smf-oauth2-callback-token #712

Workflow file for this run

name: Go
on:
push:
branches: [ main ]
pull_request:
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
go: [ '1.26.2' ]
name: Go ${{ matrix.go }} sample
steps:
- uses: actions/checkout@v6
- name: Set up Go
uses: actions/setup-go@v6
with:
go-version: ${{ matrix.go }}
- name: Build
run: go build -v ./...
- name: Test
run: go test -v ./...