chore(deps): bump golang.org/x/net from 0.0.0-20220225172249-27dd8689420f to 0.23.0 in /test/e2e #233
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: unit-test-ci | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
branches: | |
- main | |
jobs: | |
run-test: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: setup go | |
uses: actions/setup-go@v1 | |
with: | |
go-version: '1.16' | |
- name: startup service | |
run: | | |
docker-compose -f ci/docker-compose.yml up -d | |
sleep 5 | |
- name: run unit test | |
run: | | |
make test | |
- uses: codecov/codecov-action@v2 |