Skip to content

Bump actions/checkout from 4.1.4 to 4.1.5 in the github-actions group #587

Bump actions/checkout from 4.1.4 to 4.1.5 in the github-actions group

Bump actions/checkout from 4.1.4 to 4.1.5 in the github-actions group #587

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
steps:
- uses: actions/checkout@44c2b7a8a4ea60a981eaca3cf939b5f4305c123b # v4
- name: Setup Micromamba Python ${{ matrix.python-version }}
uses: mamba-org/setup-micromamba@422500192359a097648154e8db4e39bdb6c6eed7 #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 erddapy
shell: bash -l {0}
run: |
python -m pip install -e . --no-deps --force-reinstall
- name: Full Tests
shell: bash -l {0}
run: |
python -m pytest -rxs --cov=erddapy --vcr-record=none tests