Skip to content

Commit f7c324e

Browse files
authored
Merge pull request #836 from voxpupuli/metadata_deps
CI: Run metadata_deps on all modules
2 parents 61af121 + f2d941c commit f7c324e

1 file changed

Lines changed: 26 additions & 2 deletions

File tree

.github/workflows/main.yml

Lines changed: 26 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,10 @@
11
name: noop run
22

33
on:
4-
- pull_request
5-
- push
4+
pull_request: {}
5+
push:
6+
branches:
7+
- master
68

79
jobs:
810
unit:
@@ -17,3 +19,25 @@ jobs:
1719
bundler-cache: true
1820
- name: Run msync --noop
1921
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+
runs-on: ubuntu-latest
41+
name: Test suite
42+
steps:
43+
- run: echo Test suite completed

0 commit comments

Comments
 (0)