Skip to content

Commit

Permalink
chore: reduce testing footprint (#359)
Browse files Browse the repository at this point in the history
* chore: remove dialyzer

* chore: remove most testing combinations

* chore: fix version matrix
  • Loading branch information
polvalente authored Apr 6, 2024
1 parent ac19c03 commit 2929448
Showing 1 changed file with 9 additions and 29 deletions.
38 changes: 9 additions & 29 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
- uses: erlef/setup-beam@v1
with:
otp-version: 26.1.x
elixir-version: 1.14.x
elixir-version: 1.15.x
- name: Retrieve dependencies cache
uses: actions/cache@v3
id: mix-cache # id to use in retrieve action
Expand All @@ -33,21 +33,11 @@ jobs:
name: OTP ${{matrix.otp}} / Elixir ${{matrix.elixir}}
strategy:
matrix:
otp: [23.x, 24.x, 25.1.x, 26.1.x]
elixir: [1.12.x, 1.13.x, 1.14.x, 1.15.x]
exclude:
- otp: 25.1.x
elixir: 1.12.x
- otp: 26.1.x
otp: [24.x, 25.x, 26.1.x]
elixir: [1.15.x]
include:
- otp: 24.x
elixir: 1.12.x
- otp: 25.1.x
elixir: 1.13.x
- otp: 26.1.x
elixir: 1.13.x
- otp: 26.1.x
elixir: 1.14.x
- otp: 23.x
elixir: 1.15.x
needs: check_format
steps:
- uses: actions/checkout@v3
Expand Down Expand Up @@ -96,21 +86,11 @@ jobs:
if: ${{ github.ref == 'refs/heads/master' }}
strategy:
matrix:
otp: [23.x, 24.x, 25.1.x, 26.1.x]
elixir: [1.12.x, 1.13.x, 1.14.x, 1.15.x]
exclude:
- otp: 25.1.x
elixir: 1.12.x
- otp: 26.1.x
otp: [24.x, 25.x, 26.1.x]
elixir: [1.15.x]
include:
- otp: 24.x
elixir: 1.12.x
- otp: 25.1.x
elixir: 1.13.x
- otp: 26.1.x
elixir: 1.13.x
- otp: 26.1.x
elixir: 1.14.x
- otp: 23.x
elixir: 1.15.x
steps:
- uses: actions/checkout@v3
- uses: erlef/setup-beam@v1
Expand Down

0 comments on commit 2929448

Please sign in to comment.