Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

DEVOPS-466: Update input variable in shared workflows #716

Merged
merged 9 commits into from
Sep 27, 2024
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
Loading