Merge pull request #4459 from badlop/maybe

Enable maybe expression for Erlang 25 and 26
This commit is contained in:
badlop
2025-10-09 12:47:30 +02:00
committed by GitHub
7 changed files with 15 additions and 17 deletions
+1 -10
View File
@@ -164,16 +164,7 @@ jobs:
- name: Run tests
id: ct
run: |
(cd priv && ln -sf ../sql)
sed -i -e 's/ct:pal/ct:log/' test/suite.erl
COMMIT=`echo $GITHUB_SHA | cut -c 1-7`
DATE=`date +%s`
REF_NAME=`echo $GITHUB_REF_NAME | tr "/" "_"`
NODENAME=$DATE@$GITHUB_RUN_NUMBER-$GITHUB_ACTOR-$REF_NAME-$COMMIT
LABEL=`git show -s --format=%s | cut -c 1-30`
./rebar3 ct --name $NODENAME --label "$LABEL"
./rebar3 cover
run: make test
- name: Check results
if: always() && (steps.ct.outcome != 'skipped')
+1 -3
View File
@@ -31,11 +31,9 @@ jobs:
strategy:
fail-fast: false
matrix:
otp: ['24', '25', '26', '27', '28']
otp: ['25', '26', '27', '28']
rebar: ['rebar', 'rebar3']
exclude:
- otp: '24'
rebar: 'rebar'
- otp: '27'
rebar: 'rebar'
- otp: '28'