We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents abb37b4 + 3203698 commit f9c5088Copy full SHA for f9c5088
1 file changed
.github/workflows/main.yml
@@ -1,6 +1,8 @@
1
name: noop run
2
3
-on: pull_request
+on:
4
+ - pull_request
5
+ - push
6
7
jobs:
8
unit:
@@ -9,19 +11,9 @@ jobs:
9
11
steps:
10
12
- uses: actions/checkout@v2
13
- name: Setup ruby
- uses: actions/setup-ruby@v1
14
+ uses: ruby/setup-ruby@v1
15
with:
16
ruby-version: 2.7
- - uses: actions/cache@v2
- with:
17
- path: vendor/bundle
18
- key: ${{ runner.os }}-2.7-gems-${{ hashFiles('**/Gemfile.lock') }}
19
- restore-keys: |
20
- ${{ runner.os }}-2.7-gems-
21
- - name: Install dependencies
22
- run: |
23
- gem install bundler
24
- bundle config path vendor/bundle
25
- bundle install --jobs $(nproc) --retry 3
+ bundler-cache: true
26
- name: Run msync --noop
27
run: bundle exec msync update --noop --git-base=https://github.com/
0 commit comments