Skip to content

Commit

Permalink
Test with otp25
Browse files Browse the repository at this point in the history
  • Loading branch information
NelsonVides committed May 25, 2022
1 parent 938b34f commit 1f9cda5
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 9 deletions.
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

0 comments on commit 1f9cda5

Please sign in to comment.