Skip to content

refactor(github-actions): Move from rtx-action to mise-action #21

refactor(github-actions): Move from rtx-action to mise-action

refactor(github-actions): Move from rtx-action to mise-action #21

Workflow file for this run

name: Build
on:
push:
branches:
- main
pull_request:
jobs:
asdf_test:
name: asdf plugin test
strategy:
matrix:
os:
- ubuntu-latest
- macos-latest
runs-on: ${{ matrix.os }}
timeout-minutes: 10
steps:
- name: asdf_plugin_test
uses: asdf-vm/actions/plugin-test@v2
with:
command: scalingo --version
mise_test:
strategy:
matrix:
os:
- ubuntu-latest
- macos-latest
runs-on: ${{ matrix.os }}
timeout-minutes: 10
steps:
- name: Checkout
uses: actions/checkout@v3
- uses: jdx/mise-action@v2
- run: mkdir -p ~/.local/share/mise/plugins
- run: ln -s "$PWD" ~/.local/share/mise/plugins/scalingo-cli
- run: mise install scalingo-cli@latest
- run: mise exec scalingo-cli@latest -- scalingo --version