Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .github/workflows/azureml-cpu-nightly.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,14 +33,14 @@ on:
- tests/**
- setup.py

# enable manual trigger
# Enable manual trigger
workflow_dispatch:
input:
tags:
description: 'Tags to label this manual run (optional)'
default: 'Anything to describe this manual run'
default: 'Manual trigger'

# make this workflow reusable
# Make this workflow reusable
workflow_call:

jobs:
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/azureml-gpu-nightly.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,14 +33,14 @@ on:
- tests/**
- setup.py

# enable manual trigger
# Enable manual trigger
workflow_dispatch:
input:
tags:
description: 'Tags to label this manual run (optional)'
default: 'Anything to describe this manual run'
default: 'Manual trigger'

# make this workflow reusable
# Make this workflow reusable
workflow_call:

jobs:
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/azureml-spark-nightly.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,14 +33,14 @@ on:
- tests/**
- setup.py

# enable manual trigger
# Enable manual trigger
workflow_dispatch:
input:
tags:
description: 'Tags to label this manual run (optional)'
default: 'Anything to describe this manual run'
default: 'Manual trigger'

# make this workflow reusable
# Make this workflow reusable
workflow_call:

jobs:
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/azureml-unit-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,14 +21,14 @@ on:
- '!tests/**/*.md'
- setup.py

# enable manual trigger
# Enable manual trigger
workflow_dispatch:
input:
tags:
description: 'Tags to label this manual run (optional)'
default: 'Anything to describe this manual run'
default: 'Manual trigger'

# make this workflow reusable
# Make this workflow reusable
workflow_call:

jobs:
Expand Down
5 changes: 4 additions & 1 deletion .github/workflows/sarplus.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,9 @@ on:
- contrib/sarplus/scala/**
- contrib/sarplus/VERSION
- .github/workflows/sarplus.yml

# Enable manual trigger
workflow_dispatch:

env:
SARPLUS_ROOT: ${{ github.workspace }}/contrib/sarplus
Expand All @@ -29,7 +32,7 @@ jobs:
# Test pysarplus with different versions of Python.
# Package pysarplus and upload as GitHub workflow artifact when merged into
# the main branch.
runs-on: ubuntu-latest
runs-on: ubuntu-20.04
strategy:
matrix:
python-version: ["3.6", "3.7", "3.8", "3.9", "3.10"]
Expand Down