Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Test with otp25 #60

Merged
merged 1 commit into from
May 26, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
name: OTP ${{matrix.otp}}
strategy:
matrix:
otp: ['24.0', '23.3', '22.3', '21.3']
otp: ['25.0', '24.3', '23.3', '22.3', '21.3']
runs-on: 'ubuntu-20.04'
env:
OTPVER: ${{ matrix.otp }}
Expand All @@ -25,12 +25,12 @@ jobs:
- run: make deps
- run: make test
- run: make dialyzer
if: ${{ matrix.otp == '24.0' }}
if: ${{ matrix.otp == '25.0' }}
- run: make codecov
if: ${{ matrix.otp == '24.0' }}
if: ${{ matrix.otp == '25.0' }}
- run: make gcov
if: ${{ matrix.otp == '24.0' }}
if: ${{ matrix.otp == '25.0' }}
- run: pip install --user codecov
if: ${{ matrix.otp == '24.0' }}
if: ${{ matrix.otp == '25.0' }}
- run: /home/runner/.local/bin/codecov
if: ${{ matrix.otp == '24.0' }}
if: ${{ matrix.otp == '25.0' }}
9 changes: 6 additions & 3 deletions Makefile
Original file line number Diff line number Diff line change
@@ -1,8 +1,11 @@
.PHONY: rel deps test

REBARVER = 3.13.2
ifeq ($(OTPVER),24.0)
REBARVER = 3.15.1
REBARVER = 3.15.2
ifeq ($(OTPVER),24.3)
REBARVER = 3.17.0
endif
ifeq ($(OTPVER),25.0)
REBARVER = 3.18.0
endif

all: deps compile
Expand Down
3 changes: 1 addition & 2 deletions rebar.config
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,7 @@

{dialyzer,
[{warnings,
[race_conditions,
unknown,
[unknown,
unmatched_returns,
error_handling,
underspecs
Expand Down