Update bash completions with bashly 1.4.0 / completely 0.8.0 #299
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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 |