Distribution canary #1160
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: Distribution canary | |
| on: | |
| # push: | |
| schedule: | |
| - cron: '20 13 * * *' | |
| jobs: | |
| pash: | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| os: | |
| - ubuntu-24.04 | |
| runs-on: ${{ matrix.os }} | |
| steps: | |
| - name: Install PaSh using the up script and run tests | |
| run: | | |
| wget https://raw.githubusercontent.com/binpash/pash/main/scripts/up.sh | |
| sh up.sh | |
| ## Inspect it if you wish | |
| export PASH_TOP="$PWD/pash/src/pash" | |
| cd pash | |
| # activate the virtual environment to get pash command | |
| source python_pkgs/bin/activate | |
| pash -c "echo hi" | |
| ./evaluation/tests/test_evaluation_scripts.sh | |