You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
01/.github/workflows/test.yml

64 lines
1.5 KiB

name: Run Test
on:
workflow_dispatch:
pull_request:
branches: [main]
# push: # Trigger the workflow on push events
concurrency:
group: "test"
cancel-in-progress: false
jobs:
pytest:
name: Run Test
strategy:
fail-fast: false
matrix:
# os: [macos-latest]
os: [ubuntu-latest, windows-latest, macos-latest]
python-version: ["3.11"]
defaults:
run:
working-directory: software
runs-on: ${{ matrix.os }}
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install poetry
run: |
curl -sSL https://install.python-poetry.org | python3 -
- name: Install dependencies
run: |
# Ensure dependencies are installed without relying on a lock file.
poetry update
poetry install
# # Install Portaudio on Ubuntu
# - name: Installing Portaudio in Ubuntu
# if: matrix.os == 'ubuntu-latest'
# run: sudo apt-get install portaudio19-dev python-all-dev
# # Install Portaudio on macOS using Homebrew
# - name: Installing Portaudio in Mac
# if: matrix.os == 'macos-latest'
# run: brew install portaudio
# Run pytest
- name: Run Pytest
env:
OPENAI_API_KEY: ${{ secrets.OPENAI_API_KEY }}
run: poetry run pytest