Skip to content

Update bash completions with bashly 1.4.0 / completely 0.8.0 #299

Update bash completions with bashly 1.4.0 / completely 0.8.0

Update bash completions with bashly 1.4.0 / completely 0.8.0 #299

Workflow file for this run

name: Test
on:
pull_request:
push: { branches: master }
jobs:
test:
name: Run test suite
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Run shellcheck tests
run: shellcheck rush setup
- name: Install Shellkin
run: curl -Ls get.dannyb.co/shellkin/setup | bash
- name: Add repo root to PATH
run: echo "$PWD" >> $GITHUB_PATH
- name: Run acceptance tests
run: shellkin
ubuntu_setup:
name: Setup on Ubuntu
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Run setup
run: |
./setup
command -v rush
- name: Run uninstall
run: |
./uninstall
! command -v rush
macos_setup:
name: Setup on macOS
runs-on: macos-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Upgrade the outdated bash
run: brew install bash
- name: Run setup
run: |
./setup
command -v rush
- name: Run uninstall
run: |
./uninstall
! command -v rush