tests: Added printing fpath when pattern get_data fails #18
This file contains hidden or 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] | |
| jobs: | |
| test: | |
| runs-on: ubuntu-latest | |
| 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' |