Change functionality of read_array so it returns multiple variables #26
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: Test | |
on: | |
push: | |
branches: | |
- master | |
pull_request: | |
branches: | |
- "*" | |
workflow_dispatch: | |
env: | |
python-version: "3.11" | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
timeout-minutes: 10 | |
strategy: | |
fail-fast: false | |
matrix: | |
tox-env: ["py38", "py39", "py310", "py311", "py312"] | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Cache conda packages | |
uses: actions/cache@v3 | |
with: | |
path: ~/conda_pkgs_dir | |
key: | |
${{ runner.os }}-conda-${{ matrix.tox-env }}-${{ hashFiles('ci/requirements-*.yml') }} | |
- name: Install base Conda environment | |
uses: conda-incubator/setup-miniconda@v2 | |
with: | |
python-version: ${{ env.python-version }} | |
channels: conda-forge | |
- name: Install tox | |
shell: bash -l {0} | |
run: | | |
conda install -c conda-forge tox | |
- name: Run tests | |
shell: bash -l {0} | |
run: | | |
tox -vve "${{ matrix.tox-env }}" |