Merge pull request #260 from mikpe/fix-match-on-float-zero #71
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
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
jobs: | |
test: | |
name: test ${{matrix.otp}} on ${{matrix.os}} | |
runs-on: ${{matrix.os}} | |
container: | |
image: erlang:${{matrix.otp}} | |
strategy: | |
fail-fast: false | |
matrix: | |
os: | |
- ubuntu-latest | |
otp: | |
- "25.3.0.0" | |
- "24.3.4.10" | |
- "23.3.4.18" | |
- "22.3.4.26" | |
- "21.3.8.24" | |
- "20.3.8.26" | |
- "19.3.6.13" | |
- "18.3.4.11" | |
steps: | |
- uses: actions/checkout@v3 | |
- run: make test | |
- run: make edoc | |
- run: REBAR=rebar make test |