Merge pull request #11 from scaleway/dependabot/go_modules/github.com… #9
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: | |
| push: | |
| branches: [ "**" ] | |
| pull_request: | |
| branches: [ "**" ] | |
| jobs: | |
| build: | |
| name: Build and Test | |
| runs-on: ubuntu-latest | |
| permissions: | |
| contents: read | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v4 | |
| - name: Setup Go | |
| uses: actions/setup-go@v5 | |
| with: | |
| go-version: '1.24' | |
| - name: Display Go version | |
| run: go version | |
| - name: Run make fmt | |
| run: make fmt | |
| - name: Run make mocks | |
| run: make mocks | |
| - name: Run make build | |
| run: make build | |
| - name: Run make test | |
| run: make test |