File tree Expand file tree Collapse file tree 2 files changed +35
-3
lines changed Expand file tree Collapse file tree 2 files changed +35
-3
lines changed Original file line number Diff line number Diff line change 8
8
push :
9
9
branches :
10
10
- develop
11
- schedule :
12
- -
13
- cron : " 45 1 * * 3"
14
11
15
12
jobs :
16
13
analyze :
36
33
uses : github/codeql-action/autobuild@v1
37
34
- name : " Perform CodeQL Analysis"
38
35
uses : github/codeql-action/analyze@v1
36
+ - uses : ruby/setup-ruby@v1
37
+ with :
38
+ ruby-version : ' 2.7'
39
+ bundler-cache : true
40
+ - name : " Run rufo code formatting checks"
41
+ run : |
42
+ gem install rufo
43
+ rufo --check ./lib
44
+ rufo --check ./spec
Original file line number Diff line number Diff line change
1
+ ---
2
+ name : Docs
3
+
4
+ on :
5
+ push :
6
+ branches :
7
+ - develop
8
+
9
+ jobs :
10
+ docs :
11
+ runs-on : ubuntu-latest
12
+ steps :
13
+ - uses : actions/checkout@v2
14
+ - uses : ruby/setup-ruby@v1
15
+ with :
16
+ ruby-version : ' 2.7'
17
+ bundler-cache : true
18
+ - name : Run Yard Doc
19
+ run : |
20
+ gem install yard
21
+ yard doc
22
+ - name : Deploy GH Pages
23
+
24
+ with :
25
+ branch : gh-pages
26
+ folder : doc/
You can’t perform that action at this time.
0 commit comments