Skip to content
Closed
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
13 changes: 6 additions & 7 deletions .github/workflows/C.yml
Original file line number Diff line number Diff line change
@@ -1,17 +1,16 @@
name: C

on:
push:
branches: [main, 'v[0-9]+*' ]
tags-ignore: ["**"]
pull_request:
branches-ignore: [gh-pages]
paths:
- '.github/workflows/C.yml'
- 'c/Make*'
- 'c/*.mk'
- 'c/*.[ch]p?p?'

pull_request:
branches-ignore: [gh-pages]
push:
branches: [main, 'v[0-9]+*' ]
tags-ignore: ["**"]
paths:
- '.github/workflows/C.yml'
- 'c/Make*'
Expand All @@ -21,7 +20,7 @@ on:
workflow_dispatch:

concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: true

jobs:
Expand Down
12 changes: 6 additions & 6 deletions .github/workflows/R.yml
Original file line number Diff line number Diff line change
@@ -1,9 +1,8 @@
name: R

on:
push:
branches: [main, 'v[0-9]+*' ]
tags-ignore: ["**"]
pull_request:
branches-ignore: [gh-pages]
paths:
- ".github/workflows/rchk.yml"
- ".github/workflows/R.yml"
Expand All @@ -12,8 +11,9 @@ on:
- 'c/Make*'
- 'c/*.mk'
- 'c/**/*.[ch]p?p?'
pull_request:
branches-ignore: [gh-pages]
push:
branches: [main, 'v[0-9]+*' ]
tags-ignore: ["**"]
paths:
- ".github/workflows/rchk.yml"
- ".github/workflows/R.yml"
Expand All @@ -31,7 +31,7 @@ env:
_R_CHECK_CRAN_INCOMING_REMOTE_: false

concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: true

jobs:
Expand Down
13 changes: 6 additions & 7 deletions .github/workflows/matlab.yml
Original file line number Diff line number Diff line change
@@ -1,19 +1,18 @@
name: Matlab

on:
push:
branches: [main, 'v[0-9]+*' ]
tags-ignore: ["**"]
pull_request:
branches-ignore: [gh-pages]
paths:
- '.github/workflows/matlab.yml'
- 'c/hv*.[ch]p?p?'
- 'c/*.mk'
- 'matlab/Make*'
- 'matlab/*.[ch]p?p?'
- 'matlab/*.m'

pull_request:
branches-ignore: [gh-pages]
push:
branches: [main, 'v[0-9]+*' ]
tags-ignore: ["**"]
paths:
- '.github/workflows/matlab.yml'
- 'c/hv*.[ch]p?p?'
Expand All @@ -25,7 +24,7 @@ on:
workflow_dispatch:

concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: true

jobs:
Expand Down
12 changes: 6 additions & 6 deletions .github/workflows/python.yml
Original file line number Diff line number Diff line change
@@ -1,18 +1,18 @@
name: Python

on:
push:
branches: [main, 'v[0-9]+*' ]
tags-ignore: ["**"]
pull_request:
branches-ignore: [gh-pages]
paths:
- ".github/workflows/python.yml"
- "python/**"
- "!python/README.md"
- 'c/Make*'
- 'c/*.mk'
- 'c/**/*.[ch]p?p?'
pull_request:
branches-ignore: [gh-pages]
push:
branches: [main, 'v[0-9]+*' ]
tags-ignore: ["**"]
paths:
- ".github/workflows/python.yml"
- "python/**"
Expand All @@ -27,7 +27,7 @@ on:
workflow_dispatch:

concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: true

jobs:
Expand Down