Remove Erlang solutions and .x versions from README

This commit is contained in:
Jonathan Clem
2020-01-08 13:53:23 -05:00
parent 65a119e15f
commit 3a6105a934

View File

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