name: Run tests on: push: branches: - master - dev - test paths-ignore: - '**.md' pull_request: branches: - master paths-ignore: - '**.md' env: GO111MODULE: on GOPROXY: "https://proxy.golang.org" jobs: lint: strategy: matrix: os: - ubuntu-latest - macos-latest name: Run golangci-lint runs-on: ${{ matrix.os }} steps: - name: Setup Go uses: actions/setup-go@v3 with: go-version: '^1.16' - name: Checkout repository uses: actions/checkout@v3 - name: Setup and run golangci-lint uses: golangci/golangci-lint-action@v3 with: version: v1.51.2 args: --timeout 5m -v -E gofumpt -E gocritic -E misspell -E revive -E godot test: needs: lint strategy: fail-fast: false matrix: go: [1.13, 1.19] os: [ubuntu-latest, macos-latest, windows-latest] name: Go ${{ matrix.go }} @ ${{ matrix.os }} runs-on: ${{ matrix.os}} steps: - name: Checkout repository uses: actions/checkout@v3 with: ref: ${{ github.ref }} - name: Setup Go uses: actions/setup-go@v3 with: go-version: '^1.13' - name: Print Go environment id: go-env run: | printf "Using go at: $(which go)\n" printf "Go version: $(go version)\n" printf "\n\nGo environment:\n\n" go env printf "\n\nSystem environment:\n\n" env # Calculate the short SHA1 hash of the git commit echo "SHORT_SHA=$(git rev-parse --short HEAD)" >> $GITHUB_OUTPUT echo "GO_CACHE=$(go env GOCACHE)" >> $GITHUB_OUTPUT - name: Cache go modules uses: actions/cache@v3 with: path: | ${{ steps.go-env.outputs.GO_CACHE }} ~/go/pkg/mod key: ${{ runner.os }}-${{ matrix.go }}-go-ci-${{ hashFiles('**/go.sum') }} restore-keys: | ${{ runner.os }}-${{ matrix.go }}-go-ci - name: Run unit tests run: go test -v -race -coverprofile="codecov.report" -covermode=atomic - name: Upload code coverage report to Codecov uses: codecov/codecov-action@v3 with: file: ./codecov.report flags: unittests name: codecov-ants fail_ci_if_error: true verbose: true