-
Notifications
You must be signed in to change notification settings - Fork 19
43 lines (33 loc) · 892 Bytes
/
ruby.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
name: Nanoc
on:
push:
branches:
- main
pull_request:
permissions:
contents: read
jobs:
test:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
ruby-version: ["2.6", "2.7", "3.0", "3.1", "3.2"]
steps:
- uses: actions/checkout@v4
- uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby-version }}
- uses: actions/cache@v3
with:
path: vendor/bundle
key: bundler-b-${{ runner.os }}-${{ matrix.ruby-version }}-${{ hashFiles('Gemfile') }}
- run: |
bundle config set --local path 'vendor/bundle'
bundle install --jobs "$(nproc)"
- name: test_style
if: ${{ matrix.ruby-version == '3.1' }}
run: bundle exec rake test_style
- name: test_unit
run: bundle exec rake test_unit
timeout-minutes: 3