Skip to content

build workflow

build workflow #832

Workflow file for this run

---
name: build workflow
on:
schedule:
- cron: "5 8/12 * * *"
workflow_dispatch:
push:
branches:
- master
paths-ignore:
- '**.md'
pull_request:
paths-ignore:
- '**.md'
jobs:
build:
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, macOS-latest]
family: [tiny, normal, huge]
runs-on: ${{ matrix.os }}
steps:
- name: Checkout
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
with:
submodules: true
- name: ruby setup
uses: ruby/setup-ruby@8d27f39a5e7ad39aebbcbd1324f7af020229645c # v1.287.0
- name: asdf plugin test
uses: asdf-vm/actions/plugin-test@05e0d2ed97b598bfce82fd30daf324ae0c4570e6 # v3.0.2
env:
ASDF_VIM_TYPE: ${{ matrix.family }}
ASDF_VIM_CONFIG: "--with-tlib=ncurses --with-compiledby=asdf-github-action"
with:
command: vim --version