Skip to content

Commit

Permalink
Merge pull request #1 from Yozhig/github-actions-erlang
Browse files Browse the repository at this point in the history
Create erlang.yml for github actions
  • Loading branch information
Yozhig authored Jul 28, 2024
2 parents e74d84f + 5234e08 commit a7b613a
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:26.2.5

steps:
- uses: actions/checkout@v4
- name: Compile
run: rebar3 compile
- name: Run tests
run: rebar3 as test do xref, dialyzer, eunit

0 comments on commit a7b613a

Please sign in to comment.