t: ensure SHELL_PATH is properly used #110
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: Tests | |
| on: [push, pull_request] | |
| jobs: | |
| test: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Install IO::Pty | |
| run: | | |
| sudo apt-get update | |
| sudo apt-get install libio-pty-perl | |
| - name: Run Tests | |
| run: make -j1 test | |
| - name: Syntax checks | |
| run: make lint | |
| test-windows: | |
| runs-on: windows-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Run Tests | |
| env: | |
| MSYS: winsymlinks:nativestrict | |
| run: make -j1 SHELL_PATH=sh.exe test | |
| test-macos: | |
| runs-on: macos-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Run Tests | |
| run: make -j1 test |