diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 2a5ce60df..580d2f2e6 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -1,26 +1,18 @@ name: ci-pipeline - on: push: branches: [ master ] pull_request: branches: [ master ] - jobs: - ci: runs-on: ubuntu-latest - strategy: - matrix: - go: [ '1.19', '1.x' ] steps: - uses: actions/checkout@v3 - - name: Set up Go - uses: actions/setup-go@v3 + uses: actions/setup-go@v4 with: - go-version: "${{ matrix.go }}" - + go-version-file: 'go.mod' - name: Build run: | go mod tidy && git diff --exit-code