diff --git a/.github/workflows/go-cross.yml b/.github/workflows/go-cross.yml index cb31888f3..ddc8dafa9 100644 --- a/.github/workflows/go-cross.yml +++ b/.github/workflows/go-cross.yml @@ -1,13 +1,19 @@ -name: Go +name: Crosscompile on: pull_request: branches: - master +# This ensures that previous jobs for the PR are cancelled when the PR is +# updated. +concurrency: + group: ${{ github.workflow }}-${{ github.head_ref }} + cancel-in-progress: true + jobs: build: - name: MinIO crosscompile tests on ${{ matrix.go-version }} and ${{ matrix.os }} + name: Build Tests with Go ${{ matrix.go-version }} on ${{ matrix.os }} runs-on: ${{ matrix.os }} strategy: matrix: diff --git a/.github/workflows/go-lint.yml b/.github/workflows/go-lint.yml index 1b85ed7b4..11e477dcf 100644 --- a/.github/workflows/go-lint.yml +++ b/.github/workflows/go-lint.yml @@ -1,13 +1,19 @@ -name: Go +name: Linters and Tests on: pull_request: branches: - master +# This ensures that previous jobs for the PR are cancelled when the PR is +# updated. +concurrency: + group: ${{ github.workflow }}-${{ github.head_ref }} + cancel-in-progress: true + jobs: build: - name: MinIO tests on ${{ matrix.go-version }} and ${{ matrix.os }} + name: Go ${{ matrix.go-version }} on ${{ matrix.os }} runs-on: ${{ matrix.os }} strategy: matrix: diff --git a/.github/workflows/go.yml b/.github/workflows/go.yml index 432b65e99..03a2de797 100644 --- a/.github/workflows/go.yml +++ b/.github/workflows/go.yml @@ -1,13 +1,19 @@ -name: Go +name: Functional Tests on: pull_request: branches: - master +# This ensures that previous jobs for the PR are cancelled when the PR is +# updated. +concurrency: + group: ${{ github.workflow }}-${{ github.head_ref }} + cancel-in-progress: true + jobs: build: - name: MinIO Setup on ${{ matrix.go-version }} and ${{ matrix.os }} + name: Go ${{ matrix.go-version }} on ${{ matrix.os }} runs-on: ${{ matrix.os }} strategy: matrix: