Skip to content

Update README.md

Update README.md #19

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
rtx_test:
strategy:
matrix:
os:
- ubuntu-latest
- macos-latest
runs-on: ${{ matrix.os }}
timeout-minutes: 10
steps:
- name: Checkout
uses: actions/checkout@v3
- uses: jdxcode/rtx-action@v1
- run: mkdir -p ~/.local/share/rtx/plugins
- run: ln -s "$PWD" ~/.local/share/rtx/plugins/scalingo-cli
- run: rtx install scalingo-cli@latest
- run: rtx exec scalingo-cli@latest -- scalingo --version