-
Notifications
You must be signed in to change notification settings - Fork 15
52 lines (52 loc) · 1.34 KB
/
Copy pathci.yml
File metadata and controls
52 lines (52 loc) · 1.34 KB
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
44
45
46
47
48
49
50
51
52
name: CI
on:
push:
branches-ignore:
- 'dependabot/**'
pull_request:
jobs:
rubocop:
runs-on: ubuntu-latest
steps:
- name: Check out code
uses: actions/checkout@v6
- uses: ruby/setup-ruby@v1
with:
ruby-version: '3.3'
bundler-cache: true
- name: rubocop
run: bundle exec rubocop
rspec:
runs-on: ubuntu-latest
strategy:
matrix:
ruby:
- '3.1'
- '3.2'
- '3.3'
- '3.4'
name: RSpec tests ruby ${{ matrix.ruby }}
steps:
- name: Check out code
uses: actions/checkout@v6
- uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby }}
bundler-cache: true
- name: Run RSpec
run: bundle exec rspec spec/rspec
e2e:
runs-on: ubuntu-latest
steps:
- name: Check out code
uses: actions/checkout@v6
- uses: ruby/setup-ruby@v1
with:
ruby-version: '3.3'
bundler-cache: true
- name: Run RSpec in GITHUB_WORKSPACE
run: '! bundle exec rspec spec/integration/failing_spec.rb'
- name: Run RSpec in sub-directory of GITHUB_WORKSPACE
run: |
cd spec/integration
bundle exec rspec relative_path/pending_spec.rb --require ../spec_helper --format RSpec::Github::Formatter