Skip to content

Commit

Permalink
ci: fix ci
Browse files Browse the repository at this point in the history
  • Loading branch information
zmstone committed Nov 9, 2024
1 parent 1f37233 commit d3e15b9
Showing 1 changed file with 2 additions and 19 deletions.
21 changes: 2 additions & 19 deletions .github/workflows/run_test_case.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -30,21 +30,4 @@ jobs:
make eunit
make ct
make cover
- uses: actions/upload-artifact@v1
if: failure()
with:
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

0 comments on commit d3e15b9

Please sign in to comment.