Skip to content

Commit 9db22d2

Browse files
committed
fix: correct runs-on and version values
1 parent bbda60f commit 9db22d2

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

Diff for: .github/workflows/workflow.yml

+4-4
Original file line numberDiff line numberDiff line change
@@ -24,22 +24,22 @@ jobs:
2424
version: 1.18.3-otp-27
2525
- os: ubuntu-latest
2626
version: 1.13.4-otp-22
27-
runs-on: ${{ matrix.os }}
27+
runs-on: ${{ matrix.os.os }}
2828

2929
steps:
3030
- name: Install system packages on Ubuntu
31-
if: ${{ runner.os.os == 'Linux' }}
31+
if: ${{ runner.os == 'Linux' }}
3232
run: sudo apt-get install curl erlang
3333

3434
- name: Install system packages on macOS
35-
if: ${{ runner.os.os == 'macOS' }}
35+
if: ${{ runner.os == 'macOS' }}
3636
run: brew install coreutils erlang
3737

3838
- name: Test plugin
3939
uses: asdf-vm/actions/plugin-test@v2
4040
with:
4141
command: elixir --version
42-
version: ${{ runner.os.version }}
42+
version: ${{ matrix.os.version }}
4343

4444
lint:
4545
runs-on: ubuntu-latest

0 commit comments

Comments
 (0)