chore(deps): bump golang.org/x/sys from 0.0.0-20220227234510-4e6760a101f9 to 0.1.0 in /test/e2e #232
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 |