We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 42a70be commit 867a567Copy full SHA for 867a567
.github/workflows/dockerfiles.yml
@@ -0,0 +1,11 @@
1
+name: Check for out of sync YAML pipeline files
2
+
3
+on: [pull_request]
4
5
+jobs:
6
+ regen:
7
+ runs-on: ubuntu-latest
8
+ steps:
9
+ - uses: actions/checkout@v2
10
+ - run: ./update.sh -t
11
+ - run: git diff --color --exit-code
.travis.yml
@@ -7,20 +7,11 @@ dist: xenial
language: minimal
stages:
- - Test
- name: Deploy
12
if: branch = master AND type IN (push)
13
14
jobs:
15
- fast_finish: true
16
-
17
include:
18
- - stage: Test
19
- name: .travis.yml and travis.yml.template consistency
20
- script:
21
- - ./update.sh -t
22
- - git diff --stat --exit-code .travis.yml
23
24
- stage: Deploy
25
before_script:
26
- |
0 commit comments