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
+9 -9
View File
@@ -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
``` ```