fix: lint (#944) #165
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: Zinc actions | |
on: [ push ] | |
jobs: | |
Codecov-coverage: | |
runs-on: ubuntu-latest | |
env: | |
ZINC_FIRST_ADMIN_USER: admin | |
ZINC_FIRST_ADMIN_PASSWORD: Complexpass#123 | |
ZINC_WAL_SYNC_INTERVAL: 10ms | |
ZINC_WAL_REDOLOG_NO_SYNC: true | |
ZINC_ENABLE_TEXT_KEYWORD_MAPPING: true | |
steps: | |
- name: Check out repository code | |
uses: actions/checkout@v4 | |
- run: echo "💡 The ${{ github.repository }} repository has been cloned to the runner." | |
- run: echo "🖥️ The workflow is now ready to test your code on the runner." | |
- run: echo "🍏 This job's status is ${{ job.status }}." | |
- run: cd web && npm i && npm run build && cd .. | |
- run: go test ./... -race -covermode=atomic -coverprofile=coverage.out | |
- name: Codecov | |
uses: codecov/[email protected] | |