From 2636b5e21d79f033e062609d70e5e83b86ab1d3d Mon Sep 17 00:00:00 2001 From: Ariel Otilibili Date: Mon, 27 May 2024 12:05:51 +0200 Subject: [PATCH 1/2] 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 From ab7eb3874fecd3037e9527a2223a1deaf7f05f8a Mon Sep 17 00:00:00 2001 From: Ariel Otilibili Date: Mon, 27 May 2024 12:06:23 +0200 Subject: [PATCH 2/2] OTP bump ``` curl --silent https://packages.debian.org/search?keywords=erlang | \ sed -ne '/Package erlang/{/<\/a>/p; /br/p}' | \ sed -e 's/\n/$1/g; s/
([^\s]+)/$1/g; s/\+.*(?=\n)//g' | \ sed -e '1i name otp-version' | \ column -t name otp-version buster 1:22.2.7 bullseye 1:23.2.6 bookworm 1:25.2.3 trixie 1:25.3.2.12 sid 1:25.3.2.12 experimental 1:27.0 ``` --- .github/workflows/main.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index b79af5f..2178442 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -17,7 +17,7 @@ jobs: 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: