mirror of
https://github.com/alexgo-io/asdf-clarinet.git
synced 2026-01-12 06:24:00 +08:00
26 lines
485 B
YAML
26 lines
485 B
YAML
name: Build
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- main
|
|
pull_request:
|
|
|
|
jobs:
|
|
plugin_test:
|
|
name: asdf plugin test
|
|
strategy:
|
|
fail-fast: false
|
|
matrix:
|
|
os:
|
|
- ubuntu-latest
|
|
- macos-latest
|
|
runs-on: ${{ matrix.os }}
|
|
steps:
|
|
- name: asdf_plugin_test
|
|
uses: asdf-vm/actions/plugin-test@v4
|
|
with:
|
|
command: clarinet --version
|
|
version: 3.8.1
|
|
gitref: ${{ github.head_ref || github.ref_name }}
|