Skip to content

Commit

Permalink
Bump versions in GitHub Actions
Browse files Browse the repository at this point in the history
  • Loading branch information
kianmeng committed Jun 21, 2024
1 parent b8a9da0 commit a728e37
Showing 1 changed file with 9 additions and 7 deletions.
16 changes: 9 additions & 7 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name: CI

on:
push:
push:
branches: [ main ]
pull_request:
workflow_call:
Expand All @@ -13,11 +13,11 @@ jobs:
env:
MIX_ENV: test
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- uses: erlef/setup-beam@v1
with:
otp-version: 26.0
elixir-version: 1.16
otp-version: 27.0
elixir-version: 1.17
- run: mix deps.get
- run: mix compile --warnings-as-errors
- run: mix credo --strict --ignore design.alias
Expand All @@ -28,17 +28,19 @@ jobs:
matrix:
http_server: [Httpd, Plug.Cowboy, Bandit]
version:
- elixir: 1.17
otp: 27.0
- elixir: 1.16
otp: 26.0
- elixir: 1.13
otp: 25.0
runs-on: ubuntu-latest
name: OTP ${{matrix.version.otp}} / Elixir ${{matrix.version.elixir}} / ${{matrix.http_server}}
env:
MIX_ENV: test
HTTP_SERVER: ${{matrix.http_server}}
MIX_ENV: test
HTTP_SERVER: ${{matrix.http_server}}
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- uses: erlef/setup-beam@v1
with:
otp-version: ${{matrix.version.otp}}
Expand Down

0 comments on commit a728e37

Please sign in to comment.