Skip to content

Commit

Permalink
Use latest rebar3 for Erlang 27+.
Browse files Browse the repository at this point in the history
  • Loading branch information
oubiwann committed Jan 13, 2025
1 parent f09c149 commit 90ba097
Showing 1 changed file with 33 additions and 2 deletions.
35 changes: 33 additions & 2 deletions .github/workflows/cicd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,13 +12,44 @@ on:

jobs:

core-builds:
new-builds:
name: Erlang ${{ matrix.otp_version }} build
runs-on: ubuntu-24.04

strategy:
matrix:
otp_version: ['27', '26', '25', '24']
otp_version: ['27']

steps:
- uses: actions/checkout@v2
- uses: erlef/setup-beam@v1
with:
otp-version: ${{ matrix.otp_version }}
rebar3-version: '3.24'
- name: Install Deps
run: sudo apt-get update && sudo apt-get install -y gnuplot
- name: Compile
run: rebar3 compile
- name: Xref Checks
run: rebar3 xref
- name: Dialyzer
run: rebar3 dialyzer
- name: Proper Tests
run: rebar3 as test do compile, proper --regressions
# - name: Run Tests
# run: rebar3 ct -c
- name: Run Unit Tests
run: rebar3 as test lfe ltest -tall
# - name: Test Coverage
# run: rebar3 as test do proper -c, cover -v --min_coverage=0

stable-builds:
name: Erlang ${{ matrix.otp_version }} build
runs-on: ubuntu-24.04

strategy:
matrix:
otp_version: ['26', '25', '24']

steps:
- uses: actions/checkout@v2
Expand Down

0 comments on commit 90ba097

Please sign in to comment.