diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 3d09566..637186b 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -9,7 +9,23 @@ permissions: contents: write jobs: + test: + name: Integration tests + runs-on: ubuntu-latest + steps: + - name: Checkout + uses: actions/checkout@v4 + + - name: Set up Go + uses: actions/setup-go@v5 + with: + go-version-file: 'go.mod' + + - name: Run integration tests + run: go test -v ./integration + build: + needs: test runs-on: ubuntu-latest strategy: @@ -26,7 +42,7 @@ jobs: - name: Set up Go uses: actions/setup-go@v5 with: - go-version: '1.25.0' + go-version-file: 'go.mod' - name: Generate Windows resources if: matrix.goos == 'windows'