BUG: Correct Bash completion path in Makefile #197
Workflow file for this run
This file contains 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: CI | |
on: | |
push: | |
branches: [ master ] | |
pull_request: | |
branches: [ master ] | |
workflow_dispatch: # Allows you to run this workflow manually from the Actions tab | |
jobs: | |
test: | |
strategy: | |
matrix: | |
platform: [ubuntu-24.04, macos-14] | |
runs-on: ${{ matrix.platform }} | |
steps: | |
- uses: actions/checkout@v4 | |
- run: make | |
- run: make dist | |
- run: make test | |
- run: sudo make install | |
- run: sudo make uninstall | |
- run: sudo make clean |