Skip to content

Updated CI/CD.

Updated CI/CD. #28

Workflow file for this run

name: ci/cd
on:
workflow_dispatch:
push:
branches: [ main, 'release/**', 'task/**', 'feature/**', 'epic/**']
tags: ['**']
pull_request:
branches: [ main, 'release/**', 'task/**', 'feature/**', 'epic/**']
schedule:
- cron: "20 4 17 * *"
jobs:
core-builds:
name: Erlang ${{ matrix.otp_version }} build
runs-on: ubuntu-latest
strategy:
matrix:

Check failure on line 20 in .github/workflows/cicd.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/cicd.yml

Invalid workflow file

You have an error in your yaml syntax on line 20
otp_version: ['24.3', '25.3' '26.0']
steps:
- uses: actions/checkout@v3
- uses: erlef/setup-beam@v1
with:
otp-version: ${{ matrix.otp_version }}
rebar3-version: '3.22'
- name: Check rebar3 Version
run: rebar3 --version
- name: Compile
run: rebar3 compile
- name: Xref Checks
run: rebar3 xref
#- name: Dialyzer
# run: rebar3 dialyzer
- name: Run Unit Tests
run: rebar3 as test do compile,lfe ltest -tunit
- name: Run System Tests
run: rebar3 as test lfe ltest -tsystem
- name: Test Coverage
run: rebar3 as test do proper -c, cover -v --min_coverage=0
old-builds:
name: Old Erlang ${{ matrix.otp_version }} build
runs-on: ubuntu-20.04
strategy:
matrix:
otp_version: ['20.3', '21.3', '22.3', '23.3']
steps:
- uses: actions/checkout@v3
- uses: erlef/setup-beam@v1
with:
otp-version: ${{ matrix.otp_version }}
rebar3-version: '3.15'
- name: Check rebar3 Version
run: rebar3 --version
- name: Compile
run: rebar3 compile
- name: Xref Checks
run: rebar3 xref
#- name: Dialyzer
# run: rebar3 dialyzer
- name: Run Unit Tests
run: rebar3 as test do compile,lfe ltest -tunit
- name: Run System Tests
run: rebar3 as test lfe ltest -tsystem
- name: Test Coverage
run: rebar3 as test do proper -c, cover -v --min_coverage=0