Skip to content

Merge pull request #1 from mingchouliao/chore/support-devcontainer #12

Merge pull request #1 from mingchouliao/chore/support-devcontainer

Merge pull request #1 from mingchouliao/chore/support-devcontainer #12

Workflow file for this run

name: Go tests
on: [ push, pull_request ]
jobs:
go-test:
runs-on: ubuntu-latest
strategy:
matrix:
go-version: [ '1.17', '1.18', '1.19', '1.20' ]
services:
etcd:
image: bitnami/etcd
env:
ALLOW_NONE_AUTHENTICATION: yes
ports:
- 2379:2379
redis:
image: bitnami/redis
env:
ALLOW_EMPTY_PASSWORD: yes
ports:
- 6379:6379
consul:
image: bitnami/consul
ports:
- 8500:8500
zookeeper:
image: bitnami/zookeeper
env:
ALLOW_ANONYMOUS_LOGIN: yes
ports:
- 2181:2181
steps:
- uses: actions/checkout@v3
- name: Setup Go ${{ matrix.go-version }}
uses: actions/setup-go@v3
with:
go-version: ${{ matrix.go-version }}
- name: Setup DynamoDB Local
uses: rrainn/dynamodb-action@v2.0.1
with:
port: 8000
- name: Run tests
env:
ETCD_ENDPOINTS: 'localhost:2379'
REDIS_ADDR: 'localhost:6379'
CONSUL_ADDR: 'localhost:8500'
ZOOKEEPER_ENDPOINTS: 'localhost:2181'
AWS_ADDR: 'localhost:8000'
run: go test -race -v -coverprofile=coverage.txt -covermode=atomic ./...
- uses: codecov/codecov-action@v3
with:
token: ${{ secrets.CODECOV_TOKEN }}
verbose: true