Add licence #265
Workflow file for this run
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: Erlang CI | |
on: | |
push: | |
branches: [ develop ] | |
pull_request: | |
branches: [ develop ] | |
jobs: | |
build: | |
name: Test on ${{ matrix.os }} with OTP ${{ matrix.otp }} | |
runs-on: ${{ matrix.os }} | |
strategy: | |
fail-fast: false | |
matrix: | |
otp: [22, 24, 25] | |
os: [ubuntu-latest] | |
# OTP lower than 23 does not run on ubuntu-latest (22.04), see | |
# https://github.com/erlef/setup-beam#compatibility-between-operating-system-and-erlangotp | |
exclude: | |
- otp: 22 | |
os: ubuntu-latest | |
include: | |
- otp: 22 | |
os: ubuntu-20.04 | |
steps: | |
- uses: lukka/get-cmake@latest | |
- uses: actions/checkout@v2 | |
- name: Install dependencies (Ubuntu) | |
if: ${{ startsWith(matrix.os, 'ubuntu') }} | |
run: | | |
sudo apt-get -qq update | |
sudo apt-get -qq install libsnappy-dev libc6-dev | |
- name: Install Erlang/OTP | |
uses: erlef/setup-beam@v1 | |
with: | |
otp-version: ${{ matrix.otp }} | |
- name: Compile | |
run: ./rebar3 compile | |
- name: Run xref and dialyzer | |
run: ./rebar3 do xref, dialyzer | |
- name: Run eunit | |
run: ./rebar3 as gha do eunit |