Added projection ray blaster & options for periodic blaster/scene #36
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: Run tests | |
| on: [push] | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| strategy: | |
| matrix: | |
| python-version: [3.6, 3.7, 3.8] | |
| steps: | |
| - uses: actions/checkout@v2 | |
| - name: Setup conda | |
| uses: s-weigand/setup-conda@v1 | |
| with: | |
| update-conda: true | |
| python-version: ${{ matrix.python-version }} | |
| conda-channels: anaconda, conda-forge | |
| - name: Install dependencies | |
| run: | | |
| conda install -n=base pyembree numpy cython | |
| source activate base | |
| pip install -U pip | |
| pip install -r requirements.txt | |
| pip install -r requirements_dev.txt | |
| pip install -e . | |
| - name: Pytest | |
| run: | | |
| source activate base | |
| pytest |