t #15
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Build | |
on: | |
push: | |
branches: | |
- main | |
- test | |
pull_request: | |
jobs: | |
plugin_test: | |
name: asdf plugin test | |
strategy: | |
matrix: | |
os: | |
- macos-latest | |
- ubuntu-latest | |
runs-on: ${{ matrix.os }} | |
steps: | |
- 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: | |
command: janet -v |