Skip to content

Commit

Permalink
Merge pull request #176 from ariel-anieli/github-action-and-otp-bump
Browse files Browse the repository at this point in the history
GitHub action renaming & OTP bump
  • Loading branch information
ferd authored Jun 1, 2024
2 parents d6315a9 + ab7eb38 commit 75c6bae
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: EUnit
name: Integration tests

on:
pull_request:
Expand All @@ -10,22 +10,22 @@ on:

jobs:
build:
name: Test on OTP ${{ matrix.otp_version }} and ${{ matrix.os }}
name: OTP ${{ matrix.otp_version }} on ${{ matrix.os }}
runs-on: ${{ matrix.os }}
container:
image: erlang:${{matrix.otp_version}}

strategy:
matrix:
otp_version: ['26.2', '25.3', '25.2', '23.2']
otp_version: ['27.0', '25.3', '25.2', '23.2']
os: [ubuntu-latest]

steps:
- uses: actions/checkout@v2

- name: Compile
run: rebar3 compile
- name: Dialyze
- name: Dialyzer
run: rebar3 as test dialyzer
- name: EUnit tests
- name: EUnit
run: TERM=xterm rebar3 eunit

0 comments on commit 75c6bae

Please sign in to comment.