We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bbda60f commit 9db22d2Copy full SHA for 9db22d2
.github/workflows/workflow.yml
@@ -24,22 +24,22 @@ jobs:
24
version: 1.18.3-otp-27
25
- os: ubuntu-latest
26
version: 1.13.4-otp-22
27
- runs-on: ${{ matrix.os }}
+ runs-on: ${{ matrix.os.os }}
28
29
steps:
30
- name: Install system packages on Ubuntu
31
- if: ${{ runner.os.os == 'Linux' }}
+ if: ${{ runner.os == 'Linux' }}
32
run: sudo apt-get install curl erlang
33
34
- name: Install system packages on macOS
35
- if: ${{ runner.os.os == 'macOS' }}
+ if: ${{ runner.os == 'macOS' }}
36
run: brew install coreutils erlang
37
38
- name: Test plugin
39
uses: asdf-vm/actions/plugin-test@v2
40
with:
41
command: elixir --version
42
- version: ${{ runner.os.version }}
+ version: ${{ matrix.os.version }}
43
44
lint:
45
runs-on: ubuntu-latest
0 commit comments