Allow from_gsd constructor to build from dirs other than Binarized, a… #142
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: Python Package using Conda | |
on: [push] | |
jobs: | |
test: | |
name: Test on ${{ matrix.os }}, Python ${{ matrix.python-version }} | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
os: [ubuntu-latest, windows-latest, macOS-latest] | |
python-version: ["3.12","3.13"] | |
steps: | |
- name: Checkout Code | |
uses: actions/checkout@v2.4.0 | |
- name: Create Testing Environment | |
uses: conda-incubator/setup-miniconda@v2 | |
with: | |
python-version: ${{ matrix.python-version }} | |
environment-file: .github/workflows/conda-envs/env.yml | |
channels: conda-forge,defaults | |
activate-environment: test | |
auto-update-conda: false | |
auto-activate-base: false | |
show-channel-urls: true | |
miniforge-version: latest | |
- name: Install package | |
shell: bash -l {0} # conda stetup requires this special shell | |
run: | | |
pip install . --no-deps | |
- name: Run tests | |
shell: bash -l {0} # conda setup requires this special shell | |
run: | | |
pytest |