From 2636b5e21d79f033e062609d70e5e83b86ab1d3d Mon Sep 17 00:00:00 2001 From: Ariel Otilibili Date: Mon, 27 May 2024 12:05:51 +0200 Subject: [PATCH] Renaming in GitHub actions --- .github/workflows/main.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index aba4921..b79af5f 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -1,4 +1,4 @@ -name: EUnit +name: Integration tests on: pull_request: @@ -10,7 +10,7 @@ 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}} @@ -25,7 +25,7 @@ jobs: - name: Compile run: rebar3 compile - - name: Dialyze + - name: Dialyzer run: rebar3 as test dialyzer - - name: EUnit tests + - name: EUnit run: TERM=xterm rebar3 eunit