Skip to content

Commit

Permalink
ci: ensure always run on file change
Browse files Browse the repository at this point in the history
  • Loading branch information
MilesCranmer committed Jun 21, 2024
1 parent 8b6e05e commit 148b3a7
Show file tree
Hide file tree
Showing 4 changed files with 17 additions and 41 deletions.
12 changes: 3 additions & 9 deletions .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,20 +5,14 @@ on:
branches:
- '**'
paths:
- 'test/**'
- 'pysr/**'
- '.github/workflows/CI.yml'
- 'setup.py'
- '**'
tags:
- 'v*.*.*'
pull_request:
branches:
- '*'
- 'master'
paths:
- 'test/**'
- 'pysr/**'
- '.github/workflows/CI.yml'
- 'setup.py'
- '**'

jobs:
test:
Expand Down
14 changes: 4 additions & 10 deletions .github/workflows/CI_Windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,22 +3,16 @@ name: Windows
on:
push:
branches:
- '**'
- 'master'
paths:
- 'test/**'
- 'pysr/**'
- '.github/workflows/CI_Windows.yml'
- 'setup.py'
- '**'
tags:
- 'v*.*.*'
pull_request:
branches:
- '*'
- 'master'
paths:
- 'test/**'
- 'pysr/**'
- '.github/workflows/CI_Windows.yml'
- 'setup.py'
- '**'

jobs:
test:
Expand Down
18 changes: 6 additions & 12 deletions .github/workflows/CI_docker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,22 +3,16 @@ name: Docker
on:
push:
branches:
- '**'
- 'master'
paths:
- 'test/**'
- 'pysr/**'
- '.github/workflows/CI_docker.yml'
- 'setup.py'
- 'Dockerfile'
- '**'
tags:
- 'v*.*.*'
pull_request:
branches:
- '*'
- 'master'
paths:
- 'test/**'
- 'pysr/**'
- '.github/workflows/CI_docker.yml'
- 'setup.py'
- 'Dockerfile'
- '**'

jobs:
test:
Expand Down
14 changes: 4 additions & 10 deletions .github/workflows/CI_mac.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,22 +3,16 @@ name: macOS
on:
push:
branches:
- '**'
- 'master'
paths:
- 'test/**'
- 'pysr/**'
- '.github/workflows/CI_mac.yml'
- 'setup.py'
- '**'
tags:
- 'v*.*.*'
pull_request:
branches:
- '*'
- 'master'
paths:
- 'test/**'
- 'pysr/**'
- '.github/workflows/CI_mac.yml'
- 'setup.py'
- '**'

jobs:
test:
Expand Down

0 comments on commit 148b3a7

Please sign in to comment.