Skip to content

create new task state for skipped branches of a wfxors #29

create new task state for skipped branches of a wfxors

create new task state for skipped branches of a wfxors #29

Workflow file for this run

---
name: Erlang CI
on: # yamllint disable-line rule:truthy
push:
branches: [main]
pull_request:
branches: [main]
permissions:
contents: read
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
erlang:
- 25-alpine
- 26-alpine
container: erlang:${{ matrix.erlang }}
steps:
- name: checkout
uses: actions/checkout@v3
- name: Compile
run: rebar3 compile
- name: Erlang dialyzer
run: rebar3 dialyzer
- name: Run erlang tests
run: rebar3 eunit