Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions .github/workflows/workflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,22 +24,22 @@ jobs:
version: 1.18.3-otp-27
- os: ubuntu-latest
version: 1.13.4-otp-22
runs-on: ${{ matrix.os }}
runs-on: ${{ matrix.os.os }}

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

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

- name: Test plugin
uses: asdf-vm/actions/plugin-test@v2
with:
command: elixir --version
version: ${{ runner.os.version }}
version: ${{ matrix.os.version }}

lint:
runs-on: ubuntu-latest
Expand Down