-
Notifications
You must be signed in to change notification settings - Fork 0
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
2 changed files
with
58 additions
and
48 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 |
---|---|---|
|
@@ -25,62 +25,48 @@ jobs: | |
git diff --exit-code go.mod | ||
git diff --exit-code go.sum | ||
golangci-lint: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- name: Install Go | ||
uses: actions/setup-go@v5 | ||
with: | ||
go-version: ${{ env.GO_VERSION }} | ||
- name: lint | ||
uses: golangci/[email protected] | ||
with: | ||
version: latest | ||
|
||
tests-on-windows: | ||
needs: golangci-lint | ||
runs-on: windows-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- name: Install Go | ||
uses: actions/setup-go@v5 | ||
with: | ||
go-version: ${{ env.GO_VERSION }} | ||
- name: Run build | ||
run: make.exe build | ||
- name: Run tests | ||
run: make.exe test | ||
|
||
tests-on-macos: | ||
needs: golangci-lint | ||
runs-on: macos-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- name: Install Go | ||
uses: actions/setup-go@v5 | ||
with: | ||
go-version: ${{ env.GO_VERSION }} | ||
- name: Run tests | ||
run: make test | ||
|
||
tests-on-unix: | ||
needs: golangci-lint | ||
runs-on: ubuntu-latest | ||
strategy: | ||
matrix: | ||
golang: | ||
- '1.21' | ||
- '1.22' | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- name: Install Go | ||
uses: actions/setup-go@v5 | ||
with: | ||
go-version: ${{ matrix.golang }} | ||
- uses: actions/cache@v4 | ||
with: | ||
path: ~/go/pkg/mod | ||
key: ${{ runner.os }}-go-${{ matrix.golang }}-${{ hashFiles('**/go.sum') }} | ||
restore-keys: | | ||
${{ runner.os }}-go-${{ matrix.golang }}- | ||
- name: Run tests | ||
run: make test | ||
# tests-on-macos: | ||
# runs-on: macos-latest | ||
# steps: | ||
# - uses: actions/checkout@v4 | ||
# - name: Install Go | ||
# uses: actions/setup-go@v5 | ||
# with: | ||
# go-version: ${{ env.GO_VERSION }} | ||
# - name: Run tests | ||
# run: make test | ||
# | ||
# tests-on-unix: | ||
# runs-on: ubuntu-latest | ||
# strategy: | ||
# matrix: | ||
# golang: | ||
# - '1.21' | ||
# - '1.22' | ||
# steps: | ||
# - uses: actions/checkout@v4 | ||
# - name: Install Go | ||
# uses: actions/setup-go@v5 | ||
# with: | ||
# go-version: ${{ matrix.golang }} | ||
# - uses: actions/cache@v4 | ||
# with: | ||
# path: ~/go/pkg/mod | ||
# key: ${{ runner.os }}-go-${{ matrix.golang }}-${{ hashFiles('**/go.sum') }} | ||
# restore-keys: | | ||
# ${{ runner.os }}-go-${{ matrix.golang }}- | ||
# - name: Run tests | ||
# run: make test |
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 |
---|---|---|
@@ -0,0 +1,24 @@ | ||
# Original: https://github.com/golangci/golangci-lint/blob/master/.github/workflows/pr.yml | ||
name: CI | ||
on: | ||
push: | ||
branches: | ||
- main | ||
pull_request: | ||
|
||
env: | ||
GO_VERSION: '1.22' | ||
|
||
jobs: | ||
golangci-lint: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- name: Install Go | ||
uses: actions/setup-go@v5 | ||
with: | ||
go-version: ${{ env.GO_VERSION }} | ||
- name: lint | ||
uses: golangci/[email protected] | ||
with: | ||
version: latest |