async streams, max streams from settings http/2 frame #15
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: build | |
on: | |
push: | |
branches: | |
- master | |
pull_request: | |
branches: | |
- master | |
jobs: | |
ci: | |
name: Run checks and tests over ${{matrix.otp_vsn}} and ${{matrix.os}} | |
runs-on: ${{matrix.os}} | |
strategy: | |
matrix: | |
otp_vsn: [20, 21, 22, 23] | |
os: [ubuntu-latest] | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: erlef/setup-beam@v1.7.0 | |
with: | |
otp-version: ${{matrix.otp_vsn}} | |
rebar3-version: '3.14' | |
- run: rebar3 as test xref | |
- run: rebar3 as test dialyzer | |
- run: rebar3 as test ct |