This repository has been archived by the owner on Jun 11, 2024. It is now read-only.
ci: fix ci failure #29
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: Tests | |
on: | |
push: | |
paths-ignore: | |
- "**.md" | |
pull_request: | |
paths-ignore: | |
- "**.md" | |
env: | |
GO111MODULE: on | |
GOPROXY: "https://proxy.golang.org" | |
jobs: | |
build: | |
name: Test on ${{ matrix.os }} @Go${{ matrix.go-version }} | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
go-version: ["1.21.x", "1.22.x"] | |
os: [ubuntu-latest] | |
# Service containers to run with `container-job` | |
services: | |
# Label used to access the service container | |
redis: | |
# Docker Hub image | |
image: redis | |
# Set health checks to wait until redis has started | |
options: >- | |
--health-cmd "redis-cli ping" | |
--health-interval 10s | |
--health-timeout 5s | |
--health-retries 5 | |
ports: | |
# Maps port 6379 on service container to the host | |
- 6379:6379 | |
steps: | |
- name: Set up Go ${{ matrix.go-version }} | |
uses: actions/setup-go@v5 | |
with: | |
go-version: ${{ matrix.go-version }} | |
cache: false | |
- name: Check out code into the Go module directory | |
uses: actions/checkout@v4 | |
- name: Print Go environment | |
id: vars | |
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@v4 | |
with: | |
path: | | |
${{ steps.vars.outputs.GO_CACHE }} | |
~/go/pkg/mod | |
key: ${{ runner.os }}-${{ matrix.go-version }}-go-ci-${{ hashFiles('**/go.sum') }} | |
restore-keys: | | |
${{ runner.os }}-${{ matrix.go-version }}-go-ci- | |
- name: Unit test | |
run: | | |
go test -v -race -coverprofile=coverage -covermode=atomic ./... | |
- name: Upload coverage to Codecov | |
uses: codecov/codecov-action@v4 | |
with: | |
files: ./coverage | |
flags: unittests | |
token: ${{ secrets.CODECOV_TOKEN }} | |
verbose: true |