Reducing dev fetch api #106
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: test | |
| on: | |
| pull_request: | |
| branches: ["**"] | |
| push: | |
| branches: | |
| - main | |
| jobs: | |
| test: | |
| # Condition to skip merge commits | |
| if: "!contains(github.event.head_commit.message, 'Merge pull request')" | |
| runs-on: ubuntu-latest | |
| name: lint | |
| steps: | |
| - uses: actions/checkout@v5 | |
| - uses: actions/setup-go@v5 | |
| with: | |
| go-version-file: 'go.mod' | |
| - name: mod verify | |
| run: go mod verify | |
| - name: Run Tests | |
| run: make test |