We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 61af121 + f2d941c commit f7c324eCopy full SHA for f7c324e
1 file changed
.github/workflows/main.yml
@@ -1,8 +1,10 @@
1
name: noop run
2
3
on:
4
- - pull_request
5
- - push
+ pull_request: {}
+ push:
6
+ branches:
7
+ - master
8
9
jobs:
10
unit:
@@ -17,3 +19,25 @@ jobs:
17
19
bundler-cache: true
18
20
- name: Run msync --noop
21
run: bundle exec msync update --noop --git-base=https://github.com/
22
+ metadata_json_deps:
23
+ runs-on: ubuntu-latest
24
+ name: Run metadata_json_deps on all modules
25
+ steps:
26
+ - uses: actions/checkout@v3
27
+ - name: Setup ruby
28
+ uses: ruby/setup-ruby@v1
29
+ with:
30
+ ruby-version: 2.7
31
+ bundler-cache: true
32
+ - name: Run msync --noop
33
+ run: bundle exec msync clone --git-base=https://github.com/
34
+ - run: bundle exec rake metadata_deps
35
+
36
+ tests:
37
+ needs:
38
+ - unit
39
+ - metadata_json_deps
40
41
+ name: Test suite
42
43
+ - run: echo Test suite completed
0 commit comments