Skip to content

Bump pypa/gh-action-pypi-publish from 1.10.1 to 1.10.2 in the github-actions group #10

Bump pypa/gh-action-pypi-publish from 1.10.1 to 1.10.2 in the github-actions group

Bump pypa/gh-action-pypi-publish from 1.10.1 to 1.10.2 in the github-actions group #10

Workflow file for this run

name: Full Tests
on:
pull_request:
push:
branches: [main]
jobs:
run:
runs-on: ${{ matrix.os }}
strategy:
matrix:
python-version: [ "3.10", "3.11", "3.12" ]
os: [windows-latest, ubuntu-latest, macos-latest]
fail-fast: false
defaults:
run:
shell: bash -l {0}
steps:
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4
- name: Setup Micromamba Python ${{ matrix.python-version }}
uses: mamba-org/setup-micromamba@f8b8a1e23a26f60a44c853292711bacfd3eac822 #v1
with:
environment-name: TEST
init-shell: bash
create-args: >-
python=${{ matrix.python-version }} --file requirements.txt --file requirements-dev.txt --channel conda-forge
- name: Install
run: |
python -m pip install -e . --no-deps --force-reinstall
- name: Full Tests
run: |
python -m pytest -rxs tests