Skip to content

Merge pull request #231 from keynslug/ft/drop-mnesia-boot-phase #814

Merge pull request #231 from keynslug/ft/drop-mnesia-boot-phase

Merge pull request #231 from keynslug/ft/drop-mnesia-boot-phase #814

Workflow file for this run

name: Run test case
on: [push, pull_request]
jobs:
run_test_case:
runs-on: ubuntu-latest
container:
image: ghcr.io/emqx/emqx-builder/5.2-7:1.15.7-26.1.2-1-ubuntu22.04
steps:
- uses: actions/checkout@v2
- name: Install prerequisites
run: |
apt update
apt install -y cmake
- name: Run tests
run: |
make eunit
make ct
make cover
- name: Coveralls
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: |
make coveralls
- 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