Skip to content

Tox Tests

Tox Tests #158

Workflow file for this run

name: Tox Tests
on:
push:
schedule:
- cron: '0 0 * * *'
jobs:
test:
runs-on: ubuntu-latest
name: ${{ github.event_name == 'schedule' && 'Daily Scheduled Test' || 'Tox Tests' }}
steps:
- name: Install dependencies
run: |
sudo apt update
sudo apt install build-essential # GNU C++ compiler
sudo apt install libboost-all-dev # C++ libraries provided by Boost
sudo apt install swig # Python to C++ bridge
- name: Run Tox tests
uses: Somerandomguy10111/actions/toxtests@main
with:
python-version: '3.11'