Skip to content

Commit

Permalink
Update for OpenRiak
Browse files Browse the repository at this point in the history
  • Loading branch information
martinsumner committed Sep 26, 2024
1 parent 9c7b657 commit 1712b2c
Show file tree
Hide file tree
Showing 4 changed files with 41 additions and 1 deletion.
40 changes: 40 additions & 0 deletions .github/workflows/erlang.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
name: Erlang CI

on:
push:
branches:
- nhse-develop
- nhse-develop-3.2
- nhse-develop-3.4
pull_request:
branches:
- nhse-develop
- nhse-develop-3.2
- nhse-develop-3.4

jobs:

build:

name: Test on ${{ matrix.os }} with OTP ${{ matrix.otp }}
runs-on: ${{ matrix.os }}

strategy:
fail-fast: false
matrix:
otp: [24, 26]
os: [ubuntu-latest]

steps:
- uses: lukka/get-cmake@latest
- uses: actions/checkout@v4
- name: Install Erlang/OTP
uses: erlef/setup-beam@v1
with:
otp-version: ${{ matrix.otp }}
- name: Compile
run: ./rebar3 compile
- name: Run xref and dialyzer
run: ./rebar3 do xref, dialyzer
- name: Run eunit
run: ./rebar3 as gha do eunit
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1 +1,2 @@
_build/
rebar.lock
1 change: 0 additions & 1 deletion rebar.lock

This file was deleted.

Binary file added rebar3
Binary file not shown.

0 comments on commit 1712b2c

Please sign in to comment.