From cd54c71f8397c9e9358bbf561905975875e7795f Mon Sep 17 00:00:00 2001 From: Sebastian Strollo <seb@strollo.org> Date: Fri, 1 Mar 2024 15:21:14 +0100 Subject: [PATCH 1/2] avoid 'adjacent string literals without intervening white space' warning --- plugins/yanger_sn.erl | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/plugins/yanger_sn.erl b/plugins/yanger_sn.erl index a01e0ab..614ba0a 100644 --- a/plugins/yanger_sn.erl +++ b/plugins/yanger_sn.erl @@ -193,6 +193,6 @@ s() -> $\ . nl() -> $\n. indent(1) -> " "; -indent(2) -> " "" "; -indent(3) -> " "" "" "; +indent(2) -> " " " "; +indent(3) -> " " " " " "; indent(Lvl) -> lists:duplicate(Lvl*2, s()). From 6813251ed9af8e0f173abe46f57617fee956639d Mon Sep 17 00:00:00 2001 From: Sebastian Strollo <seb@strollo.org> Date: Fri, 1 Mar 2024 15:31:47 +0100 Subject: [PATCH 2/2] add OTP 26 to test matrix --- .github/workflows/test.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index bbadd63..7f459c5 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -6,7 +6,7 @@ jobs: name: OTP ${{matrix.otp}} strategy: matrix: - otp: ['24', '25'] + otp: ['24', '25', '26'] steps: - uses: actions/checkout@v3