build: upgrade version to 0.11.0 #734
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: test | |
on: | |
push: | |
branches: ["main", "test", "dev", "dev/*", "dev_*"] | |
pull_request: | |
branches: ["main", "test", "dev"] | |
workflow_dispatch: | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
go-version: [1.22.x] | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up Go | |
uses: actions/setup-go@v5 | |
with: | |
go-version: ${{ matrix.go-version }} | |
- name: Start external services | |
run: | | |
make up-ci-services | |
- name: Install dependencies | |
run: | | |
make install | |
- name: Format with gofmt | |
run: | | |
make format-check | |
- name: Import sorting with goimports | |
run: | | |
make isort-check | |
- name: Lint with golangci-lint | |
run: | | |
make lint | |
- name: Test with go test | |
run: | | |
./ci/wait-for-it.sh 127.0.0.1:3306 -s -t 60 | |
sleep 10 | |
make test | |
- name: Upload coverage reports to Codecov | |
uses: codecov/codecov-action@v4 | |
env: | |
fail_ci_if_error: true | |
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }} |