A dev version of run.sh. #159
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: ci/cd | |
on: | |
push: | |
branches: [ main, 'release/**', 'task/**', 'feature/**', 'epic/**'] | |
tags: ['**'] | |
pull_request: | |
# Build once a month, just to be sure things are still working | |
schedule: | |
- cron: "14 3 27 * *" | |
# Allows you to run this workflow manually from the Actions tab | |
workflow_dispatch: | |
jobs: | |
new-builds: | |
name: Erlang ${{ matrix.otp_version }} build | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
otp_version: ['27'] | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: erlef/setup-beam@v1 | |
with: | |
otp-version: ${{ matrix.otp_version }} | |
rebar3-version: '3.24' | |
- name: Check rebar3 Version | |
run: rebar3 --version | |
- name: Compile | |
run: rebar3 compile | |
#- name: Xref Checks | |
# run: rebar3 xref | |
#- name: Dialyzer | |
# run: rebar3 dialyzer | |
- name: Compile Tests | |
run: rebar3 as test compile | |
- name: Run Unit Tests | |
run: rebar3 as test lfe ltest -tunit | |
- name: Run System Tests | |
run: rebar3 as test lfe ltest -tsystem | |
- name: Run Integration Tests | |
run: rebar3 as test lfe ltest -tintegration | |
- name: Test Coverage | |
run: rebar3 as test do proper -c, cover -v --min_coverage=0 | |
core-builds: | |
name: Erlang ${{ matrix.otp_version }} build | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
otp_version: ['26', '25'] | |
steps: | |
- uses: actions/checkout@v4 | |
- 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: Compile Tests | |
run: rebar3 as test compile | |
- name: Run Unit Tests | |
run: rebar3 as test lfe ltest -tunit | |
- name: Run System Tests | |
run: rebar3 as test lfe ltest -tsystem | |
- name: Run Integration Tests | |
run: rebar3 as test lfe ltest -tintegration | |
- name: Test Coverage | |
run: rebar3 as test do proper -c, cover -v --min_coverage=0 |