Skip to content

Commit

Permalink
Add .github/workflows/workflow.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
intjelic committed Jun 22, 2024
1 parent 76aae36 commit 190d759
Showing 1 changed file with 27 additions and 0 deletions.
27 changes: 27 additions & 0 deletions .github/workflows/workflow.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
name: Library

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

jobs:
build:
strategy:
matrix:
erlang: [24, 25]

runs-on: ubuntu-latest
container:
image: erlang:${{ matrix.erlang }}

steps:
- name: Get the source code
uses: actions/checkout@v4

- name: Build the library
run: make

- name: Run the regression tests
run: make eunit

0 comments on commit 190d759

Please sign in to comment.