Snake case variables (PR 2 of several) #55
Workflow file for this run
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: CI testing | |
on: | |
pull_request: | |
branches: | |
- dev | |
- main | |
push: | |
branches: | |
- main | |
jobs: | |
testing: | |
name: CI (Python=${{ matrix.python-version }}, OS=${{ matrix.os }}) | |
runs-on: ${{ matrix.os }} | |
defaults: | |
run: | |
shell: bash -el {0} | |
strategy: | |
matrix: | |
os: ["ubuntu-latest", "macos-latest", "windows-latest"] | |
python-version: ["3.11"] | |
include: | |
- python-version: "3.8" | |
os: "ubuntu-latest" | |
- python-version: "3.9" | |
os: "ubuntu-latest" | |
- python-version: "3.10" | |
os: "ubuntu-latest" | |
steps: | |
- name: checkout actions | |
uses: actions/checkout@v4 | |
- uses: conda-incubator/setup-miniconda@v3 | |
with: | |
auto-update-conda: true | |
python-version: ${{ matrix.python-version }} | |
channels: conda-forge | |
- name: install dependencies | |
run: conda install -c conda-forge freecad -y | |
- name: install package | |
run: | | |
python -m pip install --upgrade pip | |
python -m pip install . | |
python -c 'import geouned' | |
python -c 'from geouned import CadToCsg' | |
python -c 'from geouned.GEOReverse import reverse' | |
python -m pip install .[tests] | |
- name: testing GEOUNED functionality | |
run: python -m pytest -v tests/test_convert.py | |
- name: install openmc | |
if: ${{ matrix.os == 'ubuntu-latest'}} | |
run: conda install -c conda-forge openmc -y | |
- name: testing with OpenMC | |
if: ${{ matrix.os == 'ubuntu-latest'}} | |
run: | | |
python -m pytest -v tests/test_volumes.py | |
python -m pytest -v tests/test_transport.py |