Skip to content

Commit cabcd51

Browse files
authored
Add Elixir 1.13 to CI (#641)
* Add Elixir 1.13 to CI Fixes #638 * Only set warnings_as_errors for 1.12
1 parent f9e3a96 commit cabcd51

File tree

2 files changed

+9
-1
lines changed

2 files changed

+9
-1
lines changed

.github/workflows/ci.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,13 @@ jobs:
3131
- elixir: 1.12.x
3232
otp: 24.0.x
3333
tests_may_fail: false
34+
check_unused_deps: true
3435
warnings_as_errors: true
36+
- elixir: 1.13.x
37+
otp: 24.0.x
38+
tests_may_fail: false
39+
# Needs to be false until https://github.com/elixir-lsp/elixir-ls/issues/642 is fixed
40+
warnings_as_errors: false
3541
check_formatted: true
3642
check_unused_deps: true
3743
run_dialyzer: true

.github/workflows/release-asset.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,8 +32,10 @@ jobs:
3232
strategy:
3333
matrix:
3434
include:
35+
- elixir-version: '1.13'
36+
otp-version: '24.1'
3537
- elixir-version: '1.12'
36-
otp-version: '24.0'
38+
otp-version: '24.1'
3739
- elixir-version: '1.11'
3840
otp-version: '23.3'
3941
- elixir-version: '1.10'

0 commit comments

Comments
 (0)