Updated csvcubed-models to v0.1.7 #945
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 csvcubed on pull request | |
on: | |
pull_request: | |
jobs: | |
test_in_environments: | |
strategy: | |
matrix: | |
# Test on linux with the newest version of python and pandas 1.x/2.x. | |
python-version: ['3.11'] | |
os: [ubuntu-latest, windows-latest] | |
pandas-version: ['pandas@<2.1'] | |
include: | |
# Test in Linux with Python 3.9 | |
- os: ubuntu-latest | |
python-version: 3.9 | |
# Testing older pandas version | |
- os: ubuntu-latest | |
python-version: 3.11 | |
pandas-version: pandas@^1.3 | |
fail-fast: false | |
uses: ./.github/workflows/reusable-test.yaml | |
with: | |
os: ${{ matrix.os }} | |
python-version: ${{ matrix.python-version }} | |
pandas-version: ${{ matrix.pandas-version }} | |
build_package_and_documentation: | |
if: needs.test_in_environments.result == 'success' | |
needs: [test_in_environments] | |
uses: ./.github/workflows/reusable-build.yaml | |
publish_package_and_documentation: | |
if: needs.build_package_and_documentation.result == 'success' | |
needs: [build_package_and_documentation] | |
uses: ./.github/workflows/reusable-deploy.yaml | |
secrets: inherit |