Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Replace setup-elixir with setup-beam #154

Merged
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
28 changes: 14 additions & 14 deletions .github/workflows/main.yml
Expand Up @@ -10,7 +10,7 @@ jobs:
- uses: actions/checkout@v2.3.1

- name: Install OTP and Elixir
uses: actions/setup-elixir@v1
uses: erlef/setup-beam@v1
with:
otp-version: 23.0
elixir-version: 1.11.2
Expand All @@ -31,24 +31,24 @@ jobs:
fail-fast: false
matrix:
include:
- otp: 23.0
elixir: 1.11.2
- otp: 24.0
elixir: 1.12.2
coverage: true
- otp: 23.0
elixir: 1.10.3
- otp: 23.3
elixir: 1.12.2
- otp: 23.3
elixir: 1.11.4
- otp: 22.3
elixir: 1.10.4
- otp: 22.3
elixir: 1.10.3
- otp: 22.1
elixir: 1.9.4
- otp: 21.3
- otp: 22.3
elixir: 1.8.2
- otp: 20.3
elixir: 1.7.4
- otp: 19.3
- otp: 22.3
elixir: 1.7.4
- otp: 19.3
- otp: 20.3
elixir: 1.6.6
- otp: 18.3
- otp: 20.3
elixir: 1.5.3
env:
GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}}
Expand All @@ -57,7 +57,7 @@ jobs:
- uses: actions/checkout@v1

- name: Install OTP and Elixir
uses: actions/setup-elixir@v1
uses: erlef/setup-beam@v1
with:
otp-version: ${{matrix.otp}}
elixir-version: ${{matrix.elixir}}
Expand Down