Skip to content

OAuth callback の実装 #1

OAuth callback の実装

OAuth callback の実装 #1

Workflow file for this run

name: Go Generate
on:
push:
branches:
- main
pull_request:
paths:
- .github/workflows/go-generate.yaml
- "backend/**.go"
- backend/go.mod
- backend/go.sum
jobs:
go-generate:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version: 1.22.5
- run: go generate ./...
working-directory: backend/app
- run: git diff --exit-code