Skip to content

fix: allow Fun action for pick_and_do #47

fix: allow Fun action for pick_and_do

fix: allow Fun action for pick_and_do #47

Workflow file for this run

name: Erlang CI
on:
pull_request:
push:
branches: ['*']
jobs:
test:
runs-on: ubuntu-latest
container:
image: erlang:${{ matrix.otp_release }}
strategy:
matrix:
include:
- otp_release: 22
- otp_release: 23
- otp_release: 24
- otp_release: 25
steps:
- uses: actions/checkout@v2
- name: Compile
run: make compile
- name: Run xref
run: make xref
- name: Run common tests
run: make ct
- name: Run cover
run: make cover
- name: Run dialyzer
run: make dialyzer