neiam /action-setup-beam
action-setup-beam
public · Issues · Pulls · Labels · Forks · Compare · Actions queued
⭐
Log in to mark this repository.
Remove Erlang solutions and .x versions from README
3a6105a · Jonathan Clem · 2020-01-08 18:53
Files changed
modified
README.md
+9
−9
@@ -16,9 +16,9 @@ See [action.yml](action.yml).
| 16 | 16 | |
| 17 | 17 | **Note** The OTP release version specification is [relatively |
| 18 | 18 | complex](http://erlang.org/doc/system_principles/versions.html#version-scheme). |
| 19 | −For best results, the current recommendation is to use a full exact version | |
| 20 | −spec from the list available from [Erlang | |
| 21 | −Solutions](https://www.erlang-solutions.com/resources/download.html). | |
| 19 | +For best results, we recommend specifying exact OTP and Elixir versions. | |
| 20 | +However, values like `22.x` are also accepted, and we attempt to resolve them | |
| 21 | +according to semantic versioning rules. | |
| 22 | 22 | |
| 23 | 23 | ### Basic example |
| 24 | 24 |
@@ -32,8 +32,8 @@ jobs:
| 32 | 32 | - uses: actions/checkout@v2 |
| 33 | 33 | - uses: actions/setup-elixir@v1.2.0 |
| 34 | 34 | with: |
| 35 | − otp-version: 22.x | |
| 36 | − elixir-version: 1.9.x | |
| 35 | + otp-version: 22.2 | |
| 36 | + elixir-version: 1.9.4 | |
| 37 | 37 | - run: mix deps.get |
| 38 | 38 | - run: mix test |
| 39 | 39 | ``` |
@@ -49,8 +49,8 @@ jobs:
| 49 | 49 | name: OTP ${{matrix.otp}} / Elixir ${{matrix.elixir}} |
| 50 | 50 | strategy: |
| 51 | 51 | matrix: |
| 52 | − otp: [20.x, 21.x, 22.x] | |
| 53 | − elixir: [1.8.x, 1.9.x] | |
| 52 | + otp: [20.3, 21.3, 22.2] | |
| 53 | + elixir: [1.8.2, 1.9.4] | |
| 54 | 54 | steps: |
| 55 | 55 | - uses: actions/checkout@v2 |
| 56 | 56 | - uses: actions/setup-elixir@v1.2.0 |
@@ -84,8 +84,8 @@ jobs:
| 84 | 84 | - uses: actions/checkout@v2 |
| 85 | 85 | - uses: actions/setup-elixir@v1.2.0 |
| 86 | 86 | with: |
| 87 | − otp-version: 22.x | |
| 88 | − elixir-version: 1.9.x | |
| 87 | + otp-version: 22.2 | |
| 88 | + elixir-version: 1.9.4 | |
| 89 | 89 | - run: mix deps.get |
| 90 | 90 | - run: mix test |
| 91 | 91 | ``` |
Parents: 65a119e