Skip to content

Create 0.7.3 release #42

Create 0.7.3 release

Create 0.7.3 release #42

Workflow file for this run

---
name: Test
on:
push:
branches:
- "main"
pull_request:
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
test:
name: Run tests
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
otp: ['24', '25', '26']
steps:
- name: Check out source
uses: actions/checkout@v4
- name: Install Erlang and Elixir
uses: erlef/setup-beam@v1
with:
otp-version: ${{ matrix.otp }}
rebar3-version: '3.18.0'
- name: Retrieve cached deps
uses: actions/cache@v4
with:
path: _build
key: ${{ matrix.otp }}-${{ hashFiles('**/rebar.lock') }}
restore-keys: |
${{ matrix.otp }}-
- name: Check formatting
run: rebar3 steamroll --check
- name: Run Erlang tests
run: rebar3 ct
- name: Run static code analysis checks
run: rebar3 dialyzer