File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 11# SketchUp Ruby API Stubs
22
3- [ ![ Gem Version] ( https://badge.fury.io/rb/sketchup-api-stubs.svg )] ( https://badge.fury.io/rb/sketchup-api-stubs ) [ ![ Build status] ( https://ci.appveyor. com/api/projects/status/6l5tqoawh44lut66/branch/master?svg=true )] ( https://ci.appveyor.com/project/thomthom/ruby-api-stubs/ branch/master )
3+ [ ![ Gem Version] ( https://badge.fury.io/rb/sketchup-api-stubs.svg )] ( https://badge.fury.io/rb/sketchup-api-stubs ) ![ Build status] ( https://github. com/thomthom/skippy/actions/workflows/rake.yaml/badge.svg? branch=main )
44
55Auto-generated stubs for the SketchUp Ruby API. Useful for IDE intellisense and auto-complete.
66
Original file line number Diff line number Diff line change 1+ name : Rake
2+
3+ on :
4+ push :
5+ branches : [ main, master, dev/github-actions ]
6+ paths-ignore :
7+ - ' **.md'
8+ pull_request :
9+ paths-ignore :
10+ - ' **.md'
11+ workflow_dispatch :
12+
13+ permissions :
14+ contents : read # to fetch code (actions/checkout)
15+
16+ jobs :
17+ rake :
18+ name : >-
19+ OS ${{ matrix.os }}, Ruby ${{ matrix.ruby }}
20+ env :
21+ CI : true
22+
23+ runs-on : ${{ matrix.os }}
24+ if : |
25+ !( contains(github.event.pull_request.title, '[ci skip]')
26+ || contains(github.event.pull_request.title, '[skip ci]'))
27+ strategy :
28+ fail-fast : false
29+ matrix :
30+ os : [ macos-12, windows-2022 ]
31+ ruby : [ 2.7 ]
32+
33+ steps :
34+ - name : Checkout source
35+ uses : actions/checkout@v3
36+ with :
37+ submodules : recursive
38+
39+ - name : Setup Ruby
40+ uses : ruby/setup-ruby-pkgs@v1
41+ with :
42+ ruby-version : ${{ matrix.ruby }}
43+ bundler-cache : true
44+ timeout-minutes : 10
45+
46+ - name : Run rake
47+ timeout-minutes : 10
48+ run : bundle exec rake
Load Diff This file was deleted.
You can’t perform that action at this time.
0 commit comments