From e0fe87022bab4ad7365af6947b19b177824a0b8b Mon Sep 17 00:00:00 2001 From: zmstone Date: Sat, 9 Nov 2024 12:15:20 +0100 Subject: [PATCH] ci: fix ci --- .github/workflows/run_test_case.yaml | 16 ++-------------- 1 file changed, 2 insertions(+), 14 deletions(-) diff --git a/.github/workflows/run_test_case.yaml b/.github/workflows/run_test_case.yaml index f08cbe0..5e7de51 100644 --- a/.github/workflows/run_test_case.yaml +++ b/.github/workflows/run_test_case.yaml @@ -12,15 +12,15 @@ jobs: fail-fast: false matrix: otp: + - erlang:27 - erlang:26 - erlang:25 - - erlang:24 container: image: ${{ matrix.otp }} steps: - - uses: actions/checkout@v1 + - uses: actions/checkout@v2 - name: Code dialyzer run: | make xref @@ -36,15 +36,3 @@ jobs: name: logs path: _build/test/logs - coveralls: - runs-on: ubuntu-latest - container: - image: erlang:25 - steps: - - uses: actions/checkout@v1 - - name: Coveralls - env: - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} - run: | - rebar3 as test do eunit,ct,cover - make coveralls