chore: add script to replace dependencies in a dummy go.work file #1514
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: CI | |
| on: [pull_request, workflow_dispatch] | |
| env: | |
| GO_VERSION: "1.23" | |
| jobs: | |
| main: | |
| name: CI | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| - name: Build | |
| uses: ./.github/actions/build | |
| with: | |
| go-version: ${{ env.GO_VERSION }} | |
| - name: Lint | |
| run: make lint | |
| - name: Test | |
| run: make test |