-
Notifications
You must be signed in to change notification settings - Fork 54
58 lines (45 loc) · 1.05 KB
/
ci.yml
File metadata and controls
58 lines (45 loc) · 1.05 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
53
54
55
56
57
58
name: Run CI
on:
push:
branches: [ main, 'feat/**' ]
paths-ignore:
- '**.md' # Do not need to run CI for markdown changes.
pull_request:
branches: [ main, 'feat/**' ]
paths-ignore:
- '**.md'
jobs:
build-linux-oldest:
uses: ./.github/workflows/build-gem.yml
with:
version: '3.0'
build-linux-latest:
uses: ./.github/workflows/build-gem.yml
with:
version: '3.2'
build-linux-jruby:
uses: ./.github/workflows/build-gem.yml
with:
version: 'jruby-9.4'
build-docs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: ./.github/actions/setup
with:
version: '3.0'
- uses: ./.github/actions/build-docs
build-windows:
runs-on: windows-latest
env:
LD_SKIP_DATABASE_TESTS: 1
defaults:
run:
shell: powershell
steps:
- uses: actions/checkout@v4
- uses: ./.github/actions/setup
with:
version: '3.0'
- name: Run tests
run: bundle _2.2.33_ exec rspec spec