Updating csvcubed-models dependency #44
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: Release csvcubed | |
on: | |
release: | |
types: [published] | |
jobs: | |
test_in_environments: | |
strategy: | |
matrix: | |
# Test in all supported versions of python in both Windows and Ubuntu. | |
python-version: ['3.9', '3.10', '3.11'] | |
os: [ubuntu-latest, windows-latest] | |
# Version lock pandas until v2.1.0 can be implemented without breaking Pyright - see #886 | |
# pandas-version: ['pandas@latest'] | |
pandas-version: ['pandas~2.0'] | |
#including a specific test case for testing older pandas version | |
include: | |
- os: ubuntu-latest | |
python-version: 3.11 | |
pandas-version: pandas@^1.3 | |
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 | |
Trigger_gss-utils_workflow: | |
if: needs.publish_package_and_documentation.result == 'success' | |
needs: [publish_package_and_documentation] | |
uses: ./.github/workflows/reusable-release_gssutils.yaml | |
secrets: inherit |