Skip to content

Commit

Permalink
ci: update workflow versions (#796)
Browse files Browse the repository at this point in the history
Tests are still failing due to #797
  • Loading branch information
mhanberg authored Jan 6, 2025
1 parent 70c9e84 commit cfa4adc
Showing 1 changed file with 10 additions and 13 deletions.
23 changes: 10 additions & 13 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:

strategy:
matrix:
elixir-otp: [{otp: 24.x, elixir: 1.12.x}, {otp: 26.x, elixir: 1.16.x}, {otp: 27.x, elixir: 1.17.0-rc.1}]
elixir-otp: [{otp: 24.x, elixir: 1.12.x}, {otp: 26.x, elixir: 1.16.x}, {otp: 27.x, elixir: 1.17.x}, {otp: 27.x, elixir: 1.18.x}]
fail-fast: false

env:
Expand Down Expand Up @@ -46,7 +46,7 @@ jobs:

strategy:
matrix:
elixir-otp: [{otp: 24.x, elixir: 1.12.x}, {otp: 26.x, elixir: 1.16.x}, {otp: 27.x, elixir: 1.17.0-rc.1}]
elixir-otp: [{otp: 27.x, elixir: 1.18.x}]
fail-fast: false

steps:
Expand Down Expand Up @@ -76,14 +76,11 @@ jobs:

- name: Check formatting
run: mix format --check-formatted
if: matrix.elixir-otp.elixir == '1.16.x'

- name: Run Credo
if: matrix.elixir-otp.elixir == '1.16.x'
run: mix credo --strict

- name: Run Dialyzer
if: matrix.elixir-otp.elixir == '1.16.x'
run: mix dialyzer --halt-exit-status

unit_tests:
Expand All @@ -94,7 +91,7 @@ jobs:

strategy:
matrix:
elixir-otp: [{otp: 24.x, elixir: 1.12.x}, {otp: 26.x, elixir: 1.16.x}, {otp: 27.x, elixir: 1.17.0-rc.1}]
elixir-otp: [{otp: 24.x, elixir: 1.12.x}, {otp: 26.x, elixir: 1.16.x}, {otp: 27.x, elixir: 1.17.x}, {otp: 27.x, elixir: 1.18.x}]
fail-fast: false

env:
Expand Down Expand Up @@ -130,7 +127,7 @@ jobs:

strategy:
matrix:
elixir-otp: [{otp: 24.x, elixir: 1.12.x}, {otp: 26.x, elixir: 1.16.x}, {otp: 27.x, elixir: 1.17.0-rc.1}]
elixir-otp: [{otp: 24.x, elixir: 1.12.x}, {otp: 26.x, elixir: 1.16.x}, {otp: 27.x, elixir: 1.17.x}, {otp: 27.x, elixir: 1.18.x}]
fail-fast: false

env:
Expand Down Expand Up @@ -166,7 +163,7 @@ jobs:
- uses: actions/upload-artifact@v4
if: always()
with:
name: Selenium Logs
name: Selenium Logs (Elixir ${{matrix.elixir-otp.elixir}})
path: ./selenium-${{matrix.elixir-otp.elixir}}.log

selenium-v4:
Expand All @@ -181,7 +178,7 @@ jobs:

strategy:
matrix:
elixir-otp: [{otp: 27.x, elixir: 1.17.0-rc.1}]
elixir-otp: [{otp: 27.x, elixir: 1.18.x}]
fail-fast: false

steps:
Expand Down Expand Up @@ -213,8 +210,8 @@ jobs:
- uses: actions/upload-artifact@v4
if: always()
with:
name: Selenium Logs
path: ./selenium-mac.log
name: Selenium Logs Selenium 4 Linux
path: ./selenium-4-linux.log

selenium-v4-mac:
name: Selenium v4 macOS
Expand Down Expand Up @@ -253,5 +250,5 @@ jobs:
- uses: actions/upload-artifact@v4
if: always()
with:
name: Selenium Logs
path: ./selenium-mac.log
name: Selenium Logs Selenium 4 Mac
path: ./selenium-4-mac.log

0 comments on commit cfa4adc

Please sign in to comment.