chore: change log level to info #912
Workflow file for this run
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: Run test case | |
on: | |
push: | |
pull_request: | |
release: | |
types: | |
- published | |
- prereleased | |
jobs: | |
run_test_case: | |
runs-on: ubuntu-latest | |
container: | |
image: emqx/build-env:erl23.2.7.2-emqx-2-ubuntu20.04 | |
steps: | |
- uses: actions/checkout@v1 | |
- name: Run tests | |
run: | | |
make eunit | |
make ct | |
make cover | |
- uses: actions/upload-artifact@v1 | |
if: always() | |
with: | |
name: logs | |
path: _build/test/logs | |
- uses: actions/upload-artifact@v1 | |
with: | |
name: cover | |
path: _build/test/cover |