This repository was archived by the owner on Aug 21, 2025. It is now read-only.
GEOPY-2262: Hook up plate simulation to the geoapps_utils.make_plate function #224
Workflow file for this run
This file contains hidden or 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: Python analysis | |
| on: | |
| pull_request: | |
| types: [opened, synchronize, reopened, ready_for_review] | |
| branches: | |
| - develop | |
| - main | |
| - release/** | |
| - feature/** | |
| - hotfix/** | |
| push: | |
| branches: | |
| - develop | |
| - main | |
| - release/** | |
| - feature/** | |
| - hotfix/** | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }} | |
| cancel-in-progress: true | |
| env: | |
| app-name: 'plate_simulation' | |
| package-manager: 'conda' | |
| jobs: | |
| call-workflow-static-analysis: | |
| name: Static analysis | |
| uses: MiraGeoscience/CI-tools/.github/workflows/reusable-python-static_analysis.yml@main | |
| with: | |
| package-manager: 'conda' | |
| app-name: ${{ github.env.app-name }} | |
| python-version: '3.10' | |
| call-workflow-pytest: | |
| name: Pytest | |
| uses: MiraGeoscience/CI-tools/.github/workflows/reusable-python-pytest.yml@main | |
| with: | |
| package-manager: 'conda' | |
| python-versions: '["3.10", "3.11", "3.12"]' | |
| os: '["ubuntu-latest", "windows-latest"]' | |
| cache-number: 1 | |
| codecov-reference-python-version: '3.10' | |
| codecov-reference-os: '["windows-latest"]' | |
| lfs: true | |
| secrets: | |
| CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }} |