mirror of
https://github.com/erlang-punch/nostr
synced 2026-04-23 05:05:51 +00:00
22 lines
422 B
YAML
22 lines
422 B
YAML
on: push
|
|
|
|
jobs:
|
|
test:
|
|
runs-on: self-hosted
|
|
name: Erlang/OTP
|
|
strategy:
|
|
fail-fast: false
|
|
matrix:
|
|
container:
|
|
- erlang:25
|
|
- erlang:25-alpine
|
|
- erlang:26
|
|
- erlang:26-alpine
|
|
container:
|
|
image: ${{ matrix.container }}
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
- run: rebar3 get-deps
|
|
- run: rebar3 compile
|
|
- run: rebar3 check
|