Skip to content

Commit

Permalink
Bump required elixir version to 1.10. Add checks for newer elixir ver…
Browse files Browse the repository at this point in the history
…sions
  • Loading branch information
Argonus committed Dec 2, 2023
1 parent 05835a1 commit aeada26
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 17 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/checks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,8 @@ jobs:
ACTIONS_ALLOW_UNSECURE_COMMANDS: true
strategy:
matrix:
elixir: ['1.12.3']
otp: ['24.3.4']
elixir: ['1.15']
otp: ['26.1']

steps:
- name: Cancel previous runs
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/integration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@ jobs:
ACTIONS_ALLOW_UNSECURE_COMMANDS: true
strategy:
matrix:
elixir: ['1.12.3']
otp: ['24.3.4']
elixir: ['1.15']
otp: ['26.1']

steps:
- name: Cancel previous runs
Expand Down
18 changes: 7 additions & 11 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,13 +15,11 @@ jobs:
strategy:
matrix:
pair:
- elixir: 1.14
otp: 25.2
- elixir: 1.15
otp: 26.1
- elixir: 1.13
otp: 24.3
- elixir: 1.11
otp: 22.3
- elixir: 1.8
- elixir: '1.10'
otp: 22.3

steps:
Expand Down Expand Up @@ -74,14 +72,12 @@ jobs:
fail-fast: false
matrix:
pair:
- elixir: 1.14
otp: 25.2
- elixir: 1.15
otp: 26.1
- elixir: 1.13
otp: 24.3
- elixir: 1.11
otp: 21.3
- elixir: 1.8
otp: 20.3
- elixir: '1.10'
otp: 22.3

steps:
- uses: actions/checkout@v2
Expand Down
4 changes: 2 additions & 2 deletions mix.exs
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ defmodule Kayrock.MixProject do
def project do
[
app: :kayrock,
version: "0.1.15",
elixir: "~> 1.8",
version: "0.2.0",
elixir: "~> 1.10",
elixirc_paths: elixirc_paths(Mix.env()),
test_coverage: [tool: ExCoveralls],
preferred_cli_env: [coveralls: :test, "test.integration": :test],
Expand Down

0 comments on commit aeada26

Please sign in to comment.