GEOPY-2758: Implement direct run_commands to specific modules for forwards and inversions #1652
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/** | |
| permissions: {} | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }} | |
| cancel-in-progress: true | |
| jobs: | |
| call-workflow-static-analysis: | |
| name: Static analysis | |
| uses: MiraGeoscience/CI-tools/.github/workflows/reusable-python-static_analysis.yml@v2 | |
| permissions: | |
| contents: read | |
| pull-requests: read | |
| with: | |
| package-manager: 'conda' | |
| app-name: 'simpeg_drivers' | |
| python-version: '3.12' | |
| call-workflow-pytest: | |
| name: Pytest | |
| uses: MiraGeoscience/CI-tools/.github/workflows/reusable-python-pytest.yml@v2 | |
| permissions: | |
| contents: read | |
| pull-requests: read | |
| with: | |
| package-manager: 'conda' | |
| python-versions: '["3.12", "3.13", "3.14"]' | |
| os: '["ubuntu-latest", "windows-latest"]' | |
| cache-number: 1 | |
| codecov-reference-python-version: '3.12' | |
| codecov-reference-os: '["ubuntu-latest"]' | |
| timeout-minutes: 40 | |
| secrets: | |
| CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }} |