refactor: resolve client pid via whereis/1 instead of the supervisor #103
Workflow file for this run
This file contains hidden or 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 cases | |
| on: | |
| push: | |
| pull_request: | |
| jobs: | |
| run_test_cases: | |
| runs-on: ubuntu-latest | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| otp: | |
| - 24.3.4 | |
| steps: | |
| - name: install docker-compose | |
| run: | | |
| sudo curl -L "https://github.com/docker/compose/releases/download/1.29.2/docker-compose-$(uname -s)-$(uname -m)" -o /usr/local/bin/docker-compose | |
| sudo chmod +x /usr/local/bin/docker-compose | |
| - uses: actions/checkout@v3 | |
| - name: start rocketmq | |
| run: | | |
| docker-compose up -d | |
| - uses: erlef/setup-beam@v1 | |
| with: | |
| otp-version: ${{ matrix.otp }} | |
| rebar3-version: 3.20.0 | |
| - name: xref | |
| run: make xref | |
| - name: dialyzer | |
| run: make dialyzer | |
| - name: eunit | |
| run: make eunit | |
| - name: ct | |
| run: make ct |