Skip to content

Build

Build #141

Workflow file for this run

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-latest
tool-version:
- 'latest'
- 'v51' # Supporting oldest
runs-on: ${{ matrix.os }}
steps:
- uses: asdf-vm/actions/plugin-test@v2
with:
version: ${{ matrix.tool-version }}
command: 'zigmod version'