Migrate GitHub Actions to erlef/setup-beam
See https://github.com/erlef/setup-beam/issues/20 We also bump to latest OTP 25.
This commit is contained in:
parent
c58ffd383b
commit
72180ab669
1 changed files with 7 additions and 4 deletions
11
.github/workflows/ci.yml
vendored
11
.github/workflows/ci.yml
vendored
|
@ -25,22 +25,25 @@ jobs:
|
||||||
no-warnings-as-errors: true
|
no-warnings-as-errors: true
|
||||||
- pair:
|
- pair:
|
||||||
elixir: 1.12.3
|
elixir: 1.12.3
|
||||||
otp: 24.3
|
otp: 24.3.4
|
||||||
# Although Elixir 1.12 supports this feature, we're expecting errors since the code to suppress
|
# Although Elixir 1.12 supports this feature, we're expecting errors since the code to suppress
|
||||||
# undefined-function-warnings on RDF.Graph.build blocks relies on Elixir 1.13 and is disabled
|
# undefined-function-warnings on RDF.Graph.build blocks relies on Elixir 1.13 and is disabled
|
||||||
# partially on older versions.
|
# partially on older versions.
|
||||||
no-warnings-as-errors: true
|
no-warnings-as-errors: true
|
||||||
- pair:
|
- pair:
|
||||||
elixir: 1.13.3
|
elixir: 1.13.4
|
||||||
otp: 23.3
|
otp: 23.3
|
||||||
- pair:
|
- pair:
|
||||||
elixir: 1.13.3
|
elixir: 1.13.4
|
||||||
otp: 24.3
|
otp: 24.3
|
||||||
|
- pair:
|
||||||
|
elixir: 1.13.4
|
||||||
|
otp: 25.0
|
||||||
lint: lint
|
lint: lint
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v2
|
- uses: actions/checkout@v2
|
||||||
|
|
||||||
- uses: erlef/setup-elixir@v1
|
- uses: erlef/setup-beam@v1
|
||||||
with:
|
with:
|
||||||
otp-version: ${{matrix.pair.otp}}
|
otp-version: ${{matrix.pair.otp}}
|
||||||
elixir-version: ${{matrix.pair.elixir}}
|
elixir-version: ${{matrix.pair.elixir}}
|
||||||
|
|
Loading…
Reference in a new issue