Create CI/CD test and build in the Github action #10
Workflow file for this run
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: ci | ||
on: | ||
push: | ||
branches: | ||
- main | ||
pull_request: | ||
concurrency: | ||
# Cancel any running workflow for the same branch when new commits are pushed. | ||
# We group both by ref_name (available when CI is triggered by a push to a branch/tag) | ||
# and head_ref (available when CI is triggered by a PR). | ||
group: "${{ github.ref_name }}-${{ github.head_ref }}" | ||
cancel-in-progress: true | ||
jobs: | ||
Build and test on Go ${{ matrix.go-version }}: | ||
Check failure on line 16 in .github/workflows/test-build.yml GitHub Actions / ciInvalid workflow file
|
||
runs-on: ubuntu-latest | ||
strategy: | ||
matrix: | ||
go-version: ['1.20.x', '1.21.x'] | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- name: Set up Go ${{ matrix.go-version }} | ||
uses: actions/setup-go@v5 | ||
with: | ||
go-version: ${{ matrix.go-version }} | ||
- name: Display Go Version | ||
run: go version | ||
- name: mod-check | ||
run: make mod-check | ||
- name: lint | ||
run: make lint | ||
- name: test | ||
run: make test | ||
- name: test-benchmarks | ||
run: make test-benchmarks | ||
- name: check-protos | ||
run: | | ||
apt-get update && apt-get -y install unzip | ||
go mod vendor | ||
make check-protos |