A GitHub action that installs Erlang/OTP for use in your CI workflow.
on: push
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1.0.0
- uses: gleam-lang/setup-erlang@v1.0.0
with:
otp-version: 22.1
- run: rebar3 euniton: push
jobs:
test:
runs-on: ubuntu-latest
name: OTP ${{matrix.otp}}
strategy:
matrix:
otp: [22.1, 21.3]
steps:
- uses: actions/checkout@v1.0.0
- uses: gleam-lang/setup-erlang@v1.0.0
with:
otp-version: ${{matrix.otp}}
- run: rebar3 euniton: push
jobs:
test:
runs-on: ubuntu-latest
services:
db:
image: postgres:11
ports: ['5432:5432']
options: >-
--health-cmd pg_isready
--health-interval 10s
--health-timeout 5s
--health-retries 5
steps:
- uses: actions/checkout@v1.0.0
- uses: gleam-lang/setup-erlang@v1.0.0
with:
otp-version: 22.1
- run: rebar3 eunit