add real world s3 dataset test #797
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: Test on Push on Linux64 | |
on: | |
push: | |
# Required shell entrypoint to have properly configured bash shell | |
defaults: | |
run: | |
shell: bash -l {0} | |
jobs: | |
linux: | |
runs-on: "ubuntu-latest" | |
strategy: | |
matrix: | |
python-version: ["3.13"] # latest only | |
fail-fast: false | |
name: Linux Python ${{ matrix.python-version }} | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
- uses: conda-incubator/setup-miniconda@v3 | |
with: | |
activate-environment: activestorage | |
environment-file: environment.yml | |
python-version: ${{ matrix.python-version }} | |
miniforge-version: "latest" | |
use-mamba: true | |
- run: conda --version | |
- run: python -V | |
- name: Install development version of NCAS-CMS/Pyfive:wacasoft | |
run: | | |
cd .. | |
git clone https://github.com/NCAS-CMS/pyfive.git | |
cd pyfive | |
git checkout wacasoft | |
pip install -e . | |
- run: pip install -e . | |
- run: conda list | |
- run: pytest -n 2 --junitxml=report-1.xml | |
- uses: codecov/codecov-action@v3 |