Build #684
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 | |
paths-ignore: | |
- '**.md' | |
pull_request: | |
paths-ignore: | |
- '**.md' | |
schedule: | |
# Every 10:42 JST | |
# https://docs.github.com/en/actions/using-workflows/events-that-trigger-workflows#schedule | |
- cron: '42 1 * * *' | |
workflow_dispatch: | |
jobs: | |
plugin-test: | |
timeout-minutes: 10 | |
strategy: | |
fail-fast: false | |
matrix: | |
os: | |
- ubuntu-latest | |
- macos-14 # M1 | |
- macos-13 # Intel | |
tool-version: | |
- 'latest' | |
- 'r88' # Having newer "r" prefix instead of older "v", but not the latest(r89 or newer) | |
- 'r75' # Supporting oldest. Because of v prefix does not work in mise https://github.com/jdx/mise/issues/1637 | |
runs-on: ${{ matrix.os }} | |
steps: | |
- uses: asdf-vm/actions/plugin-test@v3 | |
with: | |
version: ${{ matrix.tool-version }} | |
command: 'zigmod version' |