Skip to content

Commit

Permalink
CI housekeeping (#82)
Browse files Browse the repository at this point in the history
List of changes:
- add Elixir 1.17.x / Erlang OTP 27.x to CI
- bump github/actions
- bump min support versions to Elixir 1.6.x / Erlang OTP 21
- use ubuntu-20.04 as OS image due to depreciation of 18.04
  • Loading branch information
kianmeng authored Aug 18, 2024
1 parent 8cf912e commit 57e0858
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
14 changes: 7 additions & 7 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,29 +8,29 @@ on:

jobs:
test:
runs-on: ubuntu-18.04
runs-on: ubuntu-20.04
env:
MIX_ENV: test
strategy:
fail-fast: false
matrix:
include:
- pair:
elixir: 1.5.3
otp: 19.3.6.13
elixir: 1.6.x
otp: 21.x
- pair:
elixir: 1.13.4
otp: 25.0.3
elixir: 1.17.x
otp: 27.x
lint: lint
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4

- uses: erlef/setup-beam@v1
with:
otp-version: ${{matrix.pair.otp}}
elixir-version: ${{matrix.pair.elixir}}

- uses: actions/cache@v2
- uses: actions/cache@v4
with:
path: |
deps
Expand Down
2 changes: 1 addition & 1 deletion mix.exs
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ defmodule NimbleCSV.Mixfile do
[
app: :nimble_csv,
version: @version,
elixir: "~> 1.5",
elixir: "~> 1.6",
name: "NimbleCSV",
description: "A simple and fast CSV parsing and dumping library",
deps: deps(),
Expand Down

0 comments on commit 57e0858

Please sign in to comment.