[bot][macos] Generate current state of CWhy prompts #171
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"] | |
env: | |
OPENAI_API_KEY: ${{ secrets.OPENAI_API_KEY }} | |
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 -m tests.regression --platform ubuntu --check | |
check-macos: | |
runs-on: macos-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Install CWhy | |
run: | | |
python3 -m pip install --break-system-packages --upgrade pip | |
pip install --break-system-packages --upgrade setuptools # https://stackoverflow.com/questions/7446187 | |
python3 -m pip install --break-system-packages . | |
- name: Check prompts | |
run: python3 -m tests.regression --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 -m tests.regression --platform windows --check |