Fix failing Elixir setup step on CI
This commit is contained in:
parent
e1680ffa95
commit
fa4bd06250
1 changed files with 4 additions and 4 deletions
8
.github/workflows/ci.yml
vendored
8
.github/workflows/ci.yml
vendored
|
@ -9,12 +9,12 @@ on:
|
||||||
jobs:
|
jobs:
|
||||||
format:
|
format:
|
||||||
name: Check Formatting
|
name: Check Formatting
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-16.04
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v2
|
- uses: actions/checkout@v2
|
||||||
|
|
||||||
- name: Set up Elixir
|
- name: Set up Elixir
|
||||||
uses: actions/setup-elixir@v1
|
uses: erlef/setup-elixir@v1
|
||||||
with:
|
with:
|
||||||
otp-version: 22.2
|
otp-version: 22.2
|
||||||
elixir-version: 1.10.4
|
elixir-version: 1.10.4
|
||||||
|
@ -27,7 +27,7 @@ jobs:
|
||||||
|
|
||||||
test:
|
test:
|
||||||
name: Build and test
|
name: Build and test
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-16.04
|
||||||
strategy:
|
strategy:
|
||||||
fail-fast: false
|
fail-fast: false
|
||||||
matrix:
|
matrix:
|
||||||
|
@ -48,7 +48,7 @@ jobs:
|
||||||
- uses: actions/checkout@v2
|
- uses: actions/checkout@v2
|
||||||
|
|
||||||
- name: Set up Elixir
|
- name: Set up Elixir
|
||||||
uses: actions/setup-elixir@v1
|
uses: erlef/setup-elixir@v1
|
||||||
with:
|
with:
|
||||||
otp-version: ${{matrix.pair.erlang}}
|
otp-version: ${{matrix.pair.erlang}}
|
||||||
elixir-version: ${{matrix.pair.elixir}}
|
elixir-version: ${{matrix.pair.elixir}}
|
||||||
|
|
Loading…
Reference in a new issue