feat: support both x64 and arm64 for MacOS #36
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 | |
pull_request: | |
jobs: | |
shellcheck: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v2 | |
- name: Install asdf dependencies | |
uses: asdf-vm/actions/install@v1 | |
- name: Run ShellCheck | |
run: scripts/shellcheck.bash | |
shellfmt: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v2 | |
- name: Install asdf dependencies | |
uses: asdf-vm/actions/install@v1 | |
- name: List file to shfmt | |
run: shfmt -f . | |
- name: Run shfmt | |
run: scripts/shfmt.bash | |
plugin_test: | |
name: asdf plugin test | |
strategy: | |
matrix: | |
os: | |
- ubuntu-latest | |
- macos-latest | |
runs-on: ${{ matrix.os }} | |
steps: | |
- name: asdf_plugin_test | |
uses: asdf-vm/actions/plugin-test@v1 | |
with: | |
command: "asdf where camunda-modeler" |