Skip to content

Commit

Permalink
Test plugin on MacOS
Browse files Browse the repository at this point in the history
  • Loading branch information
Jakski committed Jan 26, 2022
1 parent 0ec9e5a commit 3eefdfa
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ on:
push:
branches:
- main
- test
pull_request:

jobs:
Expand All @@ -12,11 +13,18 @@ jobs:
strategy:
matrix:
os:
- macos-latest
- ubuntu-latest
runs-on: ${{ matrix.os }}
steps:
- name: Install dependencies
- name: Install dependencies for Ubuntu
if: matrix.os == 'ubuntu-latest'
run: sudo apt-get install -y meson ninja-build build-essential

- name: Install dependencies for MacOS
if: matrix.os == 'macos-latest'
run: brew install gcc ninja meson curl

- name: asdf_plugin_test
uses: asdf-vm/actions/plugin-test@v1
with:
Expand Down

0 comments on commit 3eefdfa

Please sign in to comment.