Add notes on exception logic that should be fixed #56
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: Regression | Check | |
on: | |
push: | |
branches: ["main"] | |
pull_request: | |
branches: ["main"] | |
jobs: | |
check-ubuntu: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Install dependencies | |
run: | | |
sudo apt update | |
sudo apt install -y gcc-12 | |
curl -sSf https://apt.llvm.org/llvm.sh | sudo bash -s -- 17 all | |
- name: Install CWhy | |
run: | | |
python3 -m pip install --upgrade pip | |
python3 -m pip install . | |
- name: Check prompts | |
run: python3 tests/regression.py --platform ubuntu --check | |
check-macos: | |
runs-on: macos-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Install CWhy | |
run: | | |
python3 -m pip install --upgrade pip | |
python3 -m pip install . | |
- name: Check prompts | |
run: python3 tests/regression.py --platform macos --check | |
check-windows: | |
runs-on: windows-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Install CWhy | |
run: | | |
python3 -m pip install --upgrade pip | |
python3 -m pip install . | |
- name: Check prompts | |
run: python3 tests/regression.py --platform windows --check |