Drop the --infer flag #483
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: Property based tests | |
on: | |
push: | |
branches: | |
- main | |
- master | |
pull_request: [] | |
jobs: | |
test: | |
runs-on: ubuntu-20.04 | |
name: Erlang ${{matrix.otp}} | |
strategy: | |
matrix: | |
otp: ['26.2.5'] | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: erlef/setup-beam@v1 | |
with: | |
otp-version: ${{matrix.otp}} | |
- name: "Run property-based tests" | |
run: "PROP_NUMTESTS=5000 rebar3 ct --suite test/gradualizer_prop_SUITE.erl" |