not consistent with case for variables in help messages #585
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: GameShell CI | |
on: [push] | |
jobs: | |
test: | |
strategy: | |
matrix: | |
platform: [ubuntu-latest, macos-latest] | |
runs-on: ${{ matrix.platform }} | |
steps: | |
- name: Checkout the GameShell repo | |
uses: actions/checkout@v4 | |
- if: ${{ matrix.platform == 'ubuntu-latest' }} | |
name: Install Linux deps | |
run: | | |
sudo apt install gettext man-db psmisc nano tree bsdmainutils zsh | |
# - if: ${{ matrix.platform == 'macos-latest' }} | |
# name: Install macOS deps | |
# run: | | |
# brew install coreutils pstree tree man-db | |
- name: Run the tests | |
run: | | |
make tests-bash && make tests-zsh |