Always send_to_node via the sender_pid. #74
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
| on: | |
| pull_request: | |
| branches: | |
| - "master" | |
| push: | |
| branches: | |
| - "master" | |
| jobs: | |
| test: | |
| runs-on: ubuntu-latest | |
| name: Tests on OTP ${{matrix.otp}} with rebar v${{matrix.rebar3}} | |
| strategy: | |
| matrix: | |
| otp: ['28', '27'] | |
| rebar3: ['3.25.0'] | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: erlef/setup-beam@v1 | |
| with: | |
| otp-version: ${{matrix.otp}} | |
| rebar3-version: ${{matrix.rebar3}} | |
| - name: Common Test tests | |
| run: rebar3 ct --sname ct | |
| - name: Dialyzer | |
| run: rebar3 dialyzer |