Skip to content

Nightly Test Run

Nightly Test Run #562

name: Nightly Test Run
on:
schedule: # UTC at 0400
- cron: '0 4 * * *'
workflow_dispatch:
jobs:
test:
name: Unit Testing
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [windows-latest, ubuntu-latest]
python-version: ['3.10', '3.11', '3.12']
fail-fast: false
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install OS packages
if: matrix.os == 'ubuntu-latest'
run: |
sudo apt update
sudo apt install libegl1
- name: Install pyfluent-visualization
run: make install
- name: Test with pytest
run: make unittest