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

[ENH] suggested shorter names for CI workflow elements #5470

Merged
merged 2 commits into from Nov 3, 2023
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
6 changes: 3 additions & 3 deletions .github/workflows/test_all.yml
@@ -1,11 +1,11 @@
name: test all workflow
name: weekly test all estimators
on:
schedule:
- cron: 0 0 * * 0
workflow_dispatch:
jobs:
test_base:
name: test base framework
name: test base module
strategy:
fail-fast: false
matrix:
Expand All @@ -28,7 +28,7 @@ jobs:
sub-sample-estimators: "False"
test-affected-estimators: "False"
test_components:
name: test individual components
name: test module
strategy:
fail-fast: false
matrix:
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/test_base.yml
@@ -1,11 +1,11 @@
name: test base workflow
name: test base module
on:
pull_request:
branches:
- main
jobs:
detect:
name: check for changes in base framework
name: check for changes in base module
runs-on: ubuntu-latest
permissions:
pull-requests: read
Expand All @@ -20,7 +20,7 @@ jobs:
- sktime/base/**
test:
needs: detect
name: test base framework
name: test base module
if: ${{ needs.detect.outputs.base == 'true' }}
strategy:
fail-fast: false
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/test_components.yml
@@ -1,11 +1,11 @@
name: test individual components workflow
name: test modules
on:
pull_request:
branches:
- main
jobs:
detect:
name: check for changes in individual components
name: detect change in module
runs-on: ubuntu-latest
permissions:
pull-requests: read
Expand Down Expand Up @@ -36,7 +36,7 @@ jobs:
- sktime/transformations/**
test:
needs: detect
name: test specific component
name: test module
strategy:
fail-fast: false
matrix:
Expand Down