|
1 | | -name: Ruby Gem |
2 | | - |
3 | | -on: |
4 | | - push: |
5 | | - branches: [main] |
6 | | - pull_request: |
7 | | - branches: [main] |
8 | | - |
9 | | -jobs: |
10 | | - build: |
11 | | - runs-on: ubuntu-latest |
12 | | - name: Ruby ${{ matrix.ruby }} |
13 | | - strategy: |
14 | | - matrix: |
15 | | - ruby: ["3.1.6", "3.2.3", "3.3.0"] |
16 | | - |
17 | | - steps: |
18 | | - - uses: actions/checkout@v3 |
19 | | - - name: Set up Ruby |
20 | | - uses: ruby/setup-ruby@v1 |
21 | | - with: |
22 | | - ruby-version: ${{ matrix.ruby }} |
23 | | - bundler-cache: false |
24 | | - |
25 | | - - name: Bundle install |
26 | | - run: | |
27 | | - bundle config set frozen false |
28 | | - bundle install |
29 | | -
|
30 | | - # - name: Run tests |
31 | | - # run: bundle exec rake |
32 | | - |
33 | | - lint: |
34 | | - runs-on: ubuntu-latest |
35 | | - steps: |
36 | | - - uses: actions/checkout@v3 |
37 | | - - name: Set up Ruby |
38 | | - uses: ruby/setup-ruby@v1 |
39 | | - with: |
40 | | - ruby-version: "3.2" |
41 | | - bundler-cache: false |
42 | | - |
43 | | - - name: Bundle install |
44 | | - run: | |
45 | | - bundle config set frozen false |
46 | | - bundle install |
47 | | -
|
48 | | - - name: Run rubocop |
49 | | - run: bundle exec rubocop |
| 1 | +# name: Ruby Gem |
| 2 | + |
| 3 | +# on: |
| 4 | +# push: |
| 5 | +# branches: [main] |
| 6 | +# pull_request: |
| 7 | +# branches: [main] |
| 8 | + |
| 9 | +# jobs: |
| 10 | +# build: |
| 11 | +# runs-on: ubuntu-latest |
| 12 | +# name: Ruby ${{ matrix.ruby }} |
| 13 | +# strategy: |
| 14 | +# matrix: |
| 15 | +# ruby: ["3.1.6", "3.2.3", "3.3.0"] |
| 16 | + |
| 17 | +# steps: |
| 18 | +# - uses: actions/checkout@v3 |
| 19 | +# - name: Set up Ruby |
| 20 | +# uses: ruby/setup-ruby@v1 |
| 21 | +# with: |
| 22 | +# ruby-version: ${{ matrix.ruby }} |
| 23 | +# bundler-cache: false |
| 24 | + |
| 25 | +# - name: Bundle install |
| 26 | +# run: | |
| 27 | +# bundle config set frozen false |
| 28 | +# bundle install |
| 29 | + |
| 30 | +# # - name: Run tests |
| 31 | +# # run: bundle exec rake |
| 32 | + |
| 33 | +# lint: |
| 34 | +# runs-on: ubuntu-latest |
| 35 | +# steps: |
| 36 | +# - uses: actions/checkout@v3 |
| 37 | +# - name: Set up Ruby |
| 38 | +# uses: ruby/setup-ruby@v1 |
| 39 | +# with: |
| 40 | +# ruby-version: "3.2" |
| 41 | +# bundler-cache: false |
| 42 | + |
| 43 | +# - name: Bundle install |
| 44 | +# run: | |
| 45 | +# bundle config set frozen false |
| 46 | +# bundle install |
| 47 | + |
| 48 | +# - name: Run rubocop |
| 49 | +# run: bundle exec rubocop |
0 commit comments