Skip to content

Commit

Permalink
Add Elixir version 1.11 to the testing matrix (#526)
Browse files Browse the repository at this point in the history
  • Loading branch information
jparise committed Nov 23, 2020
1 parent b89c5d5 commit e462a5b
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
- uses: actions/setup-elixir@v1
with:
otp-version: 22.2
elixir-version: '1.10'
elixir-version: '1.11'
- name: Install dependencies
run: mix deps.get
- name: Check format
Expand All @@ -32,7 +32,7 @@ jobs:
fail-fast: false
matrix:
otp: [22.2]
elixir: [1.7, 1.8, 1.9, '1.10']
elixir: [1.7, 1.8, 1.9, '1.10', '1.11']
env:
MIX_ENV: test
steps:
Expand Down Expand Up @@ -63,10 +63,10 @@ jobs:
mix deps.compile
mix compile --force --warnings-as-errors
- name: Run tests
if: matrix.elixir != '1.9'
if: matrix.elixir != '1.11'
run: mix test
- name: Run tests (with coverage)
if: matrix.elixir == '1.9'
if: matrix.elixir == '1.11'
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: mix coveralls.github

0 comments on commit e462a5b

Please sign in to comment.