-
Notifications
You must be signed in to change notification settings - Fork 2
47 lines (47 loc) · 1.21 KB
/
signature.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
44
45
46
47
name: Signature
on:
push:
branches:
- 'main'
paths:
- '.github/workflows/signature.yml'
- 'lib/**'
- 'sig/**'
- '**.gemspec'
- 'Gemfile'
- 'Steepfile'
- 'steep_expectations.yml'
- '.yardopts'
- 'Rakefile'
- '.ruby-version'
pull_request:
paths:
- '.github/workflows/signature.yml'
- 'lib/**'
- 'sig/**'
- '**.gemspec'
- 'Gemfile'
- 'Steepfile'
- 'steep_expectations.yml'
- '.yardopts'
- 'Rakefile'
- '.ruby-version'
jobs:
rbs:
timeout-minutes: 15
runs-on: 'ubuntu-24.04'
steps:
- uses: actions/checkout@v4
- uses: ruby/setup-ruby@2654679fe7f7c29875c669398a8ec0791b8a64a1 # v1.215.0
with:
bundler-cache: true # runs 'bundle install' and caches installed gems automatically
- run: bundle exec rake rbs
yard:
timeout-minutes: 15
runs-on: 'ubuntu-24.04'
steps:
- uses: actions/checkout@v4
- uses: ruby/setup-ruby@2654679fe7f7c29875c669398a8ec0791b8a64a1 # v1.215.0
with:
bundler-cache: true # runs 'bundle install' and caches installed gems automatically
- run: bundle exec rake signature:validate_yard