We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2486681 commit d7e10dfCopy full SHA for d7e10df
.github/workflows/travis.yml
@@ -1,10 +1,25 @@
1
name: Deps & CI
2
3
-on: [push]
+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
19
20
jobs:
21
build-linux:
- 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]')"
23
runs-on: ubuntu-latest
24
env:
25
TEST_DATA_HOME: /home/runner/testdata/nitransforms-tests
0 commit comments