Tox Tests #128
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: 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' |