-
Notifications
You must be signed in to change notification settings - Fork 48
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
57 additions
and
57 deletions.
There are no files selected for viewing
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,58 +1,58 @@ | ||
--- | ||
name: ci | ||
|
||
on: | ||
workflow_dispatch: | ||
push: | ||
branches: | ||
- main | ||
pull_request: ~ | ||
|
||
permissions: | ||
contents: read | ||
|
||
## Concurrency only allowed in the main branch. | ||
## So old builds running for old commits within the same Pull Request are cancelled | ||
concurrency: | ||
group: ${{ github.workflow }}-${{ github.ref }} | ||
cancel-in-progress: ${{ github.ref != 'refs/heads/main' }} | ||
|
||
jobs: | ||
check: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v3 | ||
|
||
- uses: actions/setup-go@v4 | ||
with: | ||
go-version: '1.17' | ||
|
||
- name: Check | ||
run: .ci/check.sh | ||
|
||
test: | ||
strategy: | ||
fail-fast: false | ||
matrix: | ||
go-version: ['1.17', '1.18'] | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v3 | ||
|
||
- uses: actions/setup-go@v4 | ||
with: | ||
go-version: ${{ matrix.go-version }} | ||
cache: true | ||
cache-dependency-path: '**/go.sum' | ||
|
||
- name: Test | ||
run: .ci/test.sh | ||
env: | ||
GO_VERSION: ${{ matrix.go-version }} | ||
|
||
- name: Store test results | ||
if: success() || failure() | ||
uses: actions/upload-artifact@v3 | ||
with: | ||
name: test-results | ||
path: build/junit*.xml | ||
name: ci | ||
|
||
on: | ||
workflow_dispatch: | ||
push: | ||
branches: | ||
- main | ||
pull_request: ~ | ||
|
||
permissions: | ||
contents: read | ||
|
||
## Concurrency only allowed in the main branch. | ||
## So old builds running for old commits within the same Pull Request are cancelled | ||
concurrency: | ||
group: ${{ github.workflow }}-${{ github.ref }} | ||
cancel-in-progress: ${{ github.ref != 'refs/heads/main' }} | ||
|
||
jobs: | ||
check: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v3 | ||
|
||
- uses: actions/setup-go@v4 | ||
with: | ||
go-version: '1.17' | ||
|
||
- name: Check | ||
run: .ci/check.sh | ||
|
||
test: | ||
strategy: | ||
fail-fast: false | ||
matrix: | ||
go-version: ['1.17', '1.18'] | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v3 | ||
|
||
- uses: actions/setup-go@v4 | ||
with: | ||
go-version: ${{ matrix.go-version }} | ||
cache: true | ||
cache-dependency-path: '**/go.sum' | ||
|
||
- name: Test | ||
run: .ci/test.sh | ||
env: | ||
GO_VERSION: ${{ matrix.go-version }} | ||
|
||
- name: Store test results | ||
if: success() || failure() | ||
uses: actions/upload-artifact@v3 | ||
with: | ||
name: test-results | ||
path: build/junit*.xml |