Skip to content

Commit d7e10df

Browse files
committed
CI: Run tests most of the time
1 parent 2486681 commit d7e10df

File tree

1 file changed

+17
-2
lines changed

1 file changed

+17
-2
lines changed

.github/workflows/travis.yml

+17-2
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,25 @@
11
name: Deps & CI
22

3-
on: [push]
3+
on:
4+
push:
5+
branches: [ '*' ]
6+
pull_request:
7+
branches: [ master, 'maint/*' ]
8+
schedule:
9+
- cron: '0 0 * * 1'
10+
# Allow job to be triggered manually from GitHub interface
11+
workflow_dispatch:
12+
13+
concurrency:
14+
group: ${{ github.workflow }}-${{ github.ref }}
15+
cancel-in-progress: true
16+
17+
permissions:
18+
contents: read
419

520
jobs:
621
build-linux:
7-
if: "!contains(github.event.head_commit.message, '[skip ci]' && (github.event_name == 'push' || github.event.pull_request.head.repo.full_name != 'nipy/nitransforms'))"
22+
if: "!contains(github.event.head_commit.message, '[skip ci]')"
823
runs-on: ubuntu-latest
924
env:
1025
TEST_DATA_HOME: /home/runner/testdata/nitransforms-tests

0 commit comments

Comments
 (0)