Skip to content

Commit

Permalink
Merge pull request #716 from MiraGeoscience/DEVOPS-466
Browse files Browse the repository at this point in the history
DEVOPS-466: Update input variable in shared workflows
  • Loading branch information
SophieCurinier authored Sep 27, 2024
2 parents feb0f11 + dec4e80 commit 4a7eda4
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 25 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/issue_to_jira.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,4 +9,4 @@ jobs:
uses: MiraGeoscience/CI-tools/.github/workflows/reusable-jira-issue_to_jira.yml@main
secrets: inherit
with:
project_key: 'GEOPY'
project-key: 'GEOPY'
2 changes: 1 addition & 1 deletion .github/workflows/pr_add_jira_summary.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: Add JIRA issue summary

on:
pull_request_target:
types: [opened]
types: [opened, synchronize]

jobs:
call-workflow-add-jira-issue-summary:
Expand Down
35 changes: 12 additions & 23 deletions .github/workflows/python_analysis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,35 +21,24 @@ concurrency:
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }}
cancel-in-progress: true

env:
app_name: 'geoapps'
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_vers: '3.10'
call-workflow-pytest-on-windows:
name: Pytest on Windows
uses: MiraGeoscience/CI-tools/.github/workflows/reusable-python-pytest_windows.yml@main
package-manager: 'conda'
app-name: 'geoapps'
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_ver: '["3.10"]'
cache_number: 1
codecov_reference_python_ver: '3.10'
package-manager: 'conda'
python-versions: '["3.10"]'
os: '["ubuntu-latest", "windows-latest"]'
cache-number: 1
codecov-reference-python-version: '3.10'
codecov-reference-os: '["windows-latest", "ubuntu-latest"]'
lfs: true
secrets:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
call-workflow-pytest-on-unix-os:
name: Pytest on Unix OS
uses: MiraGeoscience/CI-tools/.github/workflows/reusable-python-pytest_unix_os.yml@main
with:
package_manager: 'conda'
python_ver: '["3.10"]'
os: '["ubuntu-latest"]'
cache_number: 1
lfs: true

0 comments on commit 4a7eda4

Please sign in to comment.