ci: bump actions/checkout from 4.1.7 to 4.2.0 #390
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
name: Run static checks and unit tests | |
on: | |
push: | |
branches: | |
- main | |
- v* | |
pull_request: | |
branches: | |
- main | |
- v* | |
jobs: | |
main: | |
strategy: | |
matrix: | |
go-version: ["1.20", "1.21"] | |
runs-on: ubuntu-latest | |
steps: | |
- name: Install Go | |
uses: actions/setup-go@0a12ed9d6a96ab950c8f026ed9f722fe0da7ef32 | |
with: | |
go-version: ${{ matrix.go-version }} | |
- name: Checkout code | |
uses: actions/checkout@d632683dd7b4114ad314bca15554477dd762a938 | |
- name: Build | |
run: make | |
- name: Run static checks | |
uses: golangci/golangci-lint-action@aaa42aa0628b4ae2578232a66b541047968fac86 | |
with: | |
version: v1.55.2 | |
args: --config=.golangci.yml --verbose --out-${NO_FUTURE}format colored-line-number | |
skip-cache: true | |
- name: Check module tidiness | |
run: | | |
go mod tidy -compat=1.20 | |
go mod verify | |
test -z "$(git status --porcelain)" || (echo "please run 'go mod tidy -compat=1.20', and commit your changes"; exit 1) | |
- name: Run unit tests | |
run: make test | |
cmd: | |
strategy: | |
matrix: | |
go-version: ["1.20", "1.21"] | |
runs-on: ubuntu-latest | |
steps: | |
- name: Install Go | |
uses: actions/setup-go@0a12ed9d6a96ab950c8f026ed9f722fe0da7ef32 | |
with: | |
go-version: ${{ matrix.go-version }} | |
- name: Checkout code | |
uses: actions/checkout@d632683dd7b4114ad314bca15554477dd762a938 | |
- name: Build | |
working-directory: ./cmd | |
run: make | |
- name: Run static checks | |
uses: golangci/golangci-lint-action@aaa42aa0628b4ae2578232a66b541047968fac86 | |
with: | |
working-directory: ./cmd | |
version: v1.55.2 | |
args: --config=../.golangci.yml --verbose --out-${NO_FUTURE}format colored-line-number | |
skip-cache: true | |
- name: Check module tidiness | |
working-directory: ./cmd | |
run: | | |
go mod tidy -compat=1.20 | |
go mod verify | |
test -z "$(git status --porcelain)" || (echo "please run 'go mod tidy -compat=1.20', and commit your changes"; exit 1) | |
- name: Run unit tests | |
working-directory: ./cmd | |
run: make test | |
flow: | |
strategy: | |
matrix: | |
go-version: ["1.20", "1.21"] | |
runs-on: ubuntu-latest | |
steps: | |
- name: Install Go | |
uses: actions/setup-go@0a12ed9d6a96ab950c8f026ed9f722fe0da7ef32 | |
with: | |
go-version: ${{ matrix.go-version }} | |
- name: Checkout code | |
uses: actions/checkout@d632683dd7b4114ad314bca15554477dd762a938 | |
- name: Build | |
working-directory: ./flow | |
run: make | |
- name: Run static checks | |
uses: golangci/golangci-lint-action@aaa42aa0628b4ae2578232a66b541047968fac86 | |
with: | |
working-directory: ./flow | |
version: v1.55.2 | |
args: --config=../.golangci.yml --verbose --out-${NO_FUTURE}format colored-line-number | |
skip-cache: true | |
- name: Check module tidiness | |
working-directory: ./flow | |
run: | | |
go mod tidy -compat=1.20 | |
go mod verify | |
test -z "$(git status --porcelain)" || (echo "please run 'go mod tidy -compat=1.20', and commit your changes"; exit 1) | |
- name: Run unit tests | |
working-directory: ./flow | |
run: make test |