Skip to content
Open
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
44 changes: 22 additions & 22 deletions .github/workflows/pre.yml
Original file line number Diff line number Diff line change
Expand Up @@ -50,27 +50,27 @@ jobs:
- name: build
run: make build

unit:
name: unit
runs-on: ubuntu-latest
steps:
- name: checkout code
uses: actions/checkout@v5
- name: install Go
uses: actions/setup-go@v5
with:
go-version: ${{ env.GO_VERSION }}
- name: unit
run: make test
- name: report coverage
uses: codecov/codecov-action@v5
with:
token: ${{ secrets.CODECOV_UPLOAD_TOKEN }}
files: ./coverage.out
flags: unit
name: unit
verbose: true
fail_ci_if_error: false
# unit:
# name: unit
# runs-on: ubuntu-latest
# steps:
# - name: checkout code
# uses: actions/checkout@v5
# - name: install Go
# uses: actions/setup-go@v5
# with:
# go-version: ${{ env.GO_VERSION }}
# - name: unit
# run: make test
# - name: report coverage
# uses: codecov/codecov-action@v5
# with:
# token: ${{ secrets.CODECOV_UPLOAD_TOKEN }}
# files: ./coverage.out
# flags: unit
# name: unit
# verbose: true
# fail_ci_if_error: false

integration:
name: integration
Expand All @@ -83,4 +83,4 @@ jobs:
with:
go-version: ${{ env.GO_VERSION }}
- name: integration
run: make test-integration
run: ARGS="-test.v" make test-registration-integration
Loading