Add bb_scriptpath #65
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: Run tests | |
on: [push, pull_request] | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
container: ['bash:4.2', 'bash:4.4', 'bash:5.0', 'bash:latest'] | |
container: ${{ matrix.container }} | |
steps: | |
- name: Install dependencies | |
run: apk add --no-cache --virtual .build-deps make m4 coreutils | |
- name: Fetch source | |
uses: actions/checkout@main | |
- name: Run tests | |
run: make test | |
shellcheck: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Fetch source | |
uses: actions/checkout@main | |
- name: Make source | |
run: make only | |
- name: Run shellcheck | |
run: shellcheck --shell bash ./latest/bash-boost.sh ./latest/*/*.sh |