Skip to content

Commit

Permalink
Merge pull request #1 from siiibo/ci/test_in_otp_26_and_elixir_1.15
Browse files Browse the repository at this point in the history
ci: test with OTP 26/Elixir 1.15
  • Loading branch information
ymtszw authored Dec 5, 2023
2 parents 2080f06 + decd0c3 commit b7555b0
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -68,6 +68,7 @@ jobs:
elixir_version:
- "1.13"
- "1.14"
- "1.15"
steps:
- uses: actions/checkout@v3
- uses: erlef/setup-beam@v1
Expand All @@ -83,3 +84,26 @@ jobs:
25-
- run: mix deps.get
- run: mix test
build-otp-26:
name: Build and test on OTP 26
runs-on: ubuntu-22.04
strategy:
matrix:
elixir_version:
- "1.14"
- "1.15"
steps:
- uses: actions/checkout@v3
- uses: erlef/setup-beam@v1
with:
elixir-version: ${{ matrix.elixir_version }}
otp-version: "26"
- uses: actions/cache@v3
with:
path: deps
key: 26-${{ matrix.elixir_version }}-${{ hashFiles('**/mix.lock') }}
restore-keys: |
26-${{ matrix.elixir_version }}-
26-
- run: mix deps.get
- run: mix test

0 comments on commit b7555b0

Please sign in to comment.