Skip to content

Commit

Permalink
CI: tweaks to CI job triggers and names (#711)
Browse files Browse the repository at this point in the history
  • Loading branch information
rgommers authored Mar 12, 2024
1 parent 52ce35f commit 4374100
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 6 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/emscripten.yml
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
name: Test Pyodide build for PyWavelets
name: Test Pyodide build

on:
push:
branches:
# Runs on every merge to master to upload .dev0 wheels to anaconda.org
- master
- v1.**
pull_request:
Expand All @@ -17,7 +18,7 @@ on:
'Push wheels to Anaconda if "true". Default is "false". Warning: this will overwrite existing wheels.'
required: false
default: "false"
# Upload wheels to Anaconda on a schedule
# Upload wheels to anaconda.org on a schedule
schedule:
# Run at 0300 hours on days 3 and 17 of the month
- cron: "0 3 3,17 * *"
Expand Down
11 changes: 9 additions & 2 deletions .github/workflows/lint.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,13 @@
name: style
name: Style checks

on: [push, pull_request]
on:
push:
branches:
- v1.**
pull_request:
branches:
- master
- v1.**

concurrency:
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }}
Expand Down
3 changes: 1 addition & 2 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
@@ -1,9 +1,8 @@
name: Test
name: Linux and macOS tests

on:
push:
branches:
- master
- v1.**
pull_request:
branches:
Expand Down

0 comments on commit 4374100

Please sign in to comment.