Skip to content

Commit

Permalink
Create erlang.yml
Browse files Browse the repository at this point in the history
Adding Erlang CI
  • Loading branch information
jascrer authored Nov 25, 2023
1 parent 301f210 commit 0439f7e
Showing 1 changed file with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions .github/workflows/erlang.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
name: Erlang CI

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

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 tests
run: rebar3 do eunit, ct

0 comments on commit 0439f7e

Please sign in to comment.