fix
This commit is contained in:
parent
acd0208d6a
commit
ac837b4c8e
1 changed files with 7 additions and 7 deletions
14
.github/workflows/unit-test.yml
vendored
14
.github/workflows/unit-test.yml
vendored
|
|
@ -102,13 +102,6 @@ jobs:
|
|||
env:
|
||||
PASSWORD: ${{ secrets.UNIT_PASS }}
|
||||
run: |
|
||||
make vet
|
||||
make fmt-check
|
||||
make misspell-check
|
||||
make plugin
|
||||
make migrate
|
||||
make test
|
||||
|
||||
if [ "$DB_DRIVER" = "mysql" ]; then
|
||||
XIANG_DB_PRIMARY="$DB_USER:$PASSWORD@$DB_HOST" make test
|
||||
elif [ "$DB_DRIVER" = "postgres" ]; then
|
||||
|
|
@ -117,6 +110,13 @@ jobs:
|
|||
XIANG_DB_PRIMARY="$DB_HOST" make test
|
||||
fi
|
||||
|
||||
cd xiang && make vet
|
||||
cd xiang && make fmt-check
|
||||
cd xiang && make misspell-check
|
||||
cd xiang && make plugin
|
||||
cd xiang && make migrate
|
||||
cd xiang && make test
|
||||
|
||||
- name: Codecov Report
|
||||
uses: codecov/codecov-action@v2
|
||||
with:
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue