Skip to content

Initial commit

Initial commit #9

Workflow file for this run

name: Main Workflow
on:
push:
paths-ignore:
- '**.md'
pull_request:
paths-ignore:
- '**.md'
# schedule:
# - cron: "0 0 * * 5"
jobs:
test:
strategy:
matrix:
os: [ubuntu-latest, macos-latest]
runs-on: ${{ matrix.os }}
steps:
- name: asdf_plugin_test
uses: asdf-vm/actions/[email protected]
with:
command: sd --help
env:
GITHUB_API_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: asdf_plugin_test_1_0_0
uses: asdf-vm/actions/[email protected]
with:
command: sd --help
version: "1.0.0"
env:
GITHUB_API_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: asdf_plugin_test_0_7_6
uses: asdf-vm/actions/[email protected]
with:
command: sd --help
version: "0.7.6"
env:
GITHUB_API_TOKEN: ${{ secrets.GITHUB_TOKEN }}