CI: Update ci to use newer mamba and fix some conflicts. #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: Python Package using Conda | |
on: | |
push: | |
branches: [main] | |
pull_request: | |
branches: [main] | |
# Cancel concurrent runs | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
build: | |
name: ${{ matrix.os }}-${{ matrix.python-version }} | |
if: github.repository == 'ARM-Development/RadTraQ' | |
runs-on: ${{ matrix.os }}-latest | |
defaults: | |
run: | |
shell: bash -l {0} | |
strategy: | |
fail-fast: false | |
matrix: | |
python-version: ["3.9", "3.10", "3.11", "3.12"] | |
os: [macOS, ubuntu, Windows] | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Setup Conda Environment | |
uses: mamba-org/setup-micromamba@v3 | |
with: | |
environment-file: ./continuous_integration/environment_actions.yml | |
activate-environment: radtraq_env | |
init-shell: >- | |
bash | |
cache-downloads: true | |
post-cleanup: "all" | |
create-args: python=${{ matrix.python-version }} | |
- name: Fetch all history for all tags and branches | |
run: | | |
git fetch --prune --unshallow | |
- name: Test with pytest | |
run: | | |
python -m pytest --mpl --cov=radtraq/ |