ログイン済みの場合は認可エンドポイントのURLを発行しない #10
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Go Test | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
paths: | |
- .github/workflows/go-test.yaml | |
- "backend/**.go" | |
- backend/go.mod | |
- backend/go.sum | |
jobs: | |
go-test: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-go@v5 | |
with: | |
go-version: 1.22.5 | |
- run: go test ./... | |
working-directory: backend/app |