neiam /action-setup-beam
action-setup-beam
public · Issues · Pulls · Labels · Forks · Compare · Actions queued
⭐
Log in to mark this repository.
Add runtime outputs to workflow file
60977d4 · Jonathan Clem · 2020-08-05 14:55
Files changed
modified
.github/workflows/test.yml
+3
−0
@@ -28,10 +28,13 @@ jobs:
| 28 | 28 | steps: |
| 29 | 29 | - uses: actions/checkout@v2 |
| 30 | 30 | - name: Use actions/setup-elixir |
| 31 | + id: setup-elixir | |
| 31 | 32 | uses: ./ |
| 32 | 33 | with: |
| 33 | 34 | otp-version: ${{matrix.pair.otp-version}} |
| 34 | 35 | elixir-version: ${{matrix.pair.elixir-version}} |
| 36 | + - name: Output runtime versions | |
| 37 | + run: echo "Elixir ${{steps.setup-elixir.outputs.elixir-version}} / OTP ${{steps.setup-elixir.outputs.otp-version}}" | |
| 35 | 38 | - name: Run Mix project tests |
| 36 | 39 | run: |- |
| 37 | 40 | cd test-project |
modified
dist/.github/workflows/test.yml
+3
−0
@@ -28,10 +28,13 @@ jobs:
| 28 | 28 | steps: |
| 29 | 29 | - uses: actions/checkout@v2 |
| 30 | 30 | - name: Use actions/setup-elixir |
| 31 | + id: setup-elixir | |
| 31 | 32 | uses: ./ |
| 32 | 33 | with: |
| 33 | 34 | otp-version: ${{matrix.pair.otp-version}} |
| 34 | 35 | elixir-version: ${{matrix.pair.elixir-version}} |
| 36 | + - name: Output runtime versions | |
| 37 | + run: echo "Elixir ${{steps.setup-elixir.outputs.elixir-version}} / OTP ${{steps.setup-elixir.outputs.otp-version}}" | |
| 35 | 38 | - name: Run Mix project tests |
| 36 | 39 | run: |- |
| 37 | 40 | cd test-project |
Parents: 9b45d17