ContentRewardItem 네이밍 수정 #19
Workflow file for this run
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 |