mirror of
https://github.com/erlef/setup-beam.git
synced 2026-07-23 07:06:07 +00:00
Remove Erlang solutions and .x versions from README
This commit is contained in:
@@ -16,9 +16,9 @@ See [action.yml](action.yml).
|
|||||||
|
|
||||||
**Note** The OTP release version specification is [relatively
|
**Note** The OTP release version specification is [relatively
|
||||||
complex](http://erlang.org/doc/system_principles/versions.html#version-scheme).
|
complex](http://erlang.org/doc/system_principles/versions.html#version-scheme).
|
||||||
For best results, the current recommendation is to use a full exact version
|
For best results, we recommend specifying exact OTP and Elixir versions.
|
||||||
spec from the list available from [Erlang
|
However, values like `22.x` are also accepted, and we attempt to resolve them
|
||||||
Solutions](https://www.erlang-solutions.com/resources/download.html).
|
according to semantic versioning rules.
|
||||||
|
|
||||||
### Basic example
|
### Basic example
|
||||||
|
|
||||||
@@ -32,8 +32,8 @@ jobs:
|
|||||||
- uses: actions/checkout@v2
|
- uses: actions/checkout@v2
|
||||||
- uses: actions/setup-elixir@v1.2.0
|
- uses: actions/setup-elixir@v1.2.0
|
||||||
with:
|
with:
|
||||||
otp-version: 22.x
|
otp-version: 22.2
|
||||||
elixir-version: 1.9.x
|
elixir-version: 1.9.4
|
||||||
- run: mix deps.get
|
- run: mix deps.get
|
||||||
- run: mix test
|
- run: mix test
|
||||||
```
|
```
|
||||||
@@ -49,8 +49,8 @@ jobs:
|
|||||||
name: OTP ${{matrix.otp}} / Elixir ${{matrix.elixir}}
|
name: OTP ${{matrix.otp}} / Elixir ${{matrix.elixir}}
|
||||||
strategy:
|
strategy:
|
||||||
matrix:
|
matrix:
|
||||||
otp: [20.x, 21.x, 22.x]
|
otp: [20.3, 21.3, 22.2]
|
||||||
elixir: [1.8.x, 1.9.x]
|
elixir: [1.8.2, 1.9.4]
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v2
|
- uses: actions/checkout@v2
|
||||||
- uses: actions/setup-elixir@v1.2.0
|
- uses: actions/setup-elixir@v1.2.0
|
||||||
@@ -84,8 +84,8 @@ jobs:
|
|||||||
- uses: actions/checkout@v2
|
- uses: actions/checkout@v2
|
||||||
- uses: actions/setup-elixir@v1.2.0
|
- uses: actions/setup-elixir@v1.2.0
|
||||||
with:
|
with:
|
||||||
otp-version: 22.x
|
otp-version: 22.2
|
||||||
elixir-version: 1.9.x
|
elixir-version: 1.9.4
|
||||||
- run: mix deps.get
|
- run: mix deps.get
|
||||||
- run: mix test
|
- run: mix test
|
||||||
```
|
```
|
||||||
|
|||||||
Reference in New Issue
Block a user