Skip to content

Commit

Permalink
Create erlang.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
hyperimpose authored Apr 14, 2024
1 parent 69a2557 commit 522c782
Showing 1 changed file with 28 additions and 0 deletions.
28 changes: 28 additions & 0 deletions .github/workflows/erlang.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
name: Erlang CI

on:
push:
branches: [ "master" ]
pull_request:
branches: [ "master" ]

permissions:
contents: read

jobs:

build:

runs-on: ubuntu-latest

container:
image: erlang:22.0.7

steps:
- uses: actions/checkout@v3
- name: Compile
run: rebar3 compile
- name: Run dialyzer
run: rebar3 dialyzer
- name: Run tests
run: rebar3 eunit

0 comments on commit 522c782

Please sign in to comment.