컨텐츠별 보상 페이지에서 사용되는 쿼리 데이터 로더 사용하도록 변경 #10
This file contains hidden or 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 Tests | |
| on: | |
| pull_request: | |
| types: | |
| - synchronize | |
| - opened | |
| - reopened | |
| - unlocked | |
| paths: | |
| - "src/go/**" | |
| push: | |
| branches: | |
| - main | |
| paths: | |
| - "src/go/**" | |
| workflow_dispatch: | |
| jobs: | |
| go-tests: | |
| name: Run Go tests | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Check out source code | |
| uses: actions/checkout@master | |
| - name: Set up Go | |
| uses: actions/setup-go@v3 | |
| with: | |
| go-version: 1.23 | |
| - name: Set up Just CLI | |
| uses: extractions/setup-just@v1 | |
| - name: Run Go tests | |
| run: just go-test |