File tree Expand file tree Collapse file tree 5 files changed +116
-15
lines changed Expand file tree Collapse file tree 5 files changed +116
-15
lines changed Original file line number Diff line number Diff line change
1
+ name : Test site build
2
+
3
+ on : [push, pull_request]
4
+
5
+ jobs :
6
+ build :
7
+
8
+ runs-on : ubuntu-latest
9
+
10
+ steps :
11
+ - uses : actions/checkout@v2
12
+ - name : Set up Ruby 2.6
13
+ uses : actions/setup-ruby@v1
14
+ with :
15
+ ruby-version : 2.6.x
16
+ - name : Build and test site
17
+ run : |
18
+ gem install bundler
19
+ bundle install --jobs 4 --retry 3
20
+ bundle exec rake test
Original file line number Diff line number Diff line change
1
+ name : Ensure entries are GitHub Orgs
2
+
3
+ on :
4
+ push :
5
+ paths :
6
+ - " Gemfile"
7
+ - " script/ensure-orgs"
8
+ - " .github/workflows/ensure-orgs.yml"
9
+ - " _data/**"
10
+ pull_request :
11
+ paths :
12
+ - " Gemfile"
13
+ - " script/ensure-orgs"
14
+ - " .github/workflows/ensure-orgs.yml"
15
+ - " _data/**"
16
+
17
+ jobs :
18
+ build :
19
+
20
+ runs-on : ubuntu-latest
21
+
22
+ steps :
23
+ - uses : actions/checkout@v2
24
+ - name : Set up Ruby 2.6
25
+ uses : actions/setup-ruby@v1
26
+ with :
27
+ ruby-version : 2.6.x
28
+ - name : Ensure data entries are GitHub Orgs
29
+ run : |
30
+ gem install bundler
31
+ bundle install --jobs 4 --retry 3
32
+ bundle exec script/ensure-orgs
Original file line number Diff line number Diff line change
1
+ name : Ensure entries are unique
2
+
3
+ on :
4
+ push :
5
+ paths :
6
+ - " Gemfile"
7
+ - " script/ensure-unique"
8
+ - " .github/workflows/ensure-unique.yml"
9
+ - " _data/**"
10
+ pull_request :
11
+ paths :
12
+ - " Gemfile"
13
+ - " script/ensure-unique"
14
+ - " .github/workflows/ensure-unique.yml"
15
+ - " _data/**"
16
+
17
+ jobs :
18
+ build :
19
+
20
+ runs-on : ubuntu-latest
21
+
22
+ steps :
23
+ - uses : actions/checkout@v2
24
+ - name : Set up Ruby 2.6
25
+ uses : actions/setup-ruby@v1
26
+ with :
27
+ ruby-version : 2.6.x
28
+ - name : Ensure Orgs are unique
29
+ run : |
30
+ gem install bundler
31
+ bundle install --jobs 4 --retry 3
32
+ bundle exec script/ensure-unique
Original file line number Diff line number Diff line change
1
+ name : RuboCop linting
2
+
3
+ on :
4
+ push :
5
+ paths :
6
+ - " Gemfile"
7
+ - " .rubocop.yml"
8
+ - " .github/workflows/rubucop.yml"
9
+ - " **/*.rb"
10
+ pull_request :
11
+ paths :
12
+ - " Gemfile"
13
+ - " .rubocop.yml"
14
+ - " .github/workflows/rubucop.yml"
15
+ - " **/*.rb"
16
+
17
+ jobs :
18
+ build :
19
+
20
+ runs-on : ubuntu-latest
21
+
22
+ steps :
23
+ - uses : actions/checkout@v2
24
+ - name : Set up Ruby 2.6
25
+ uses : actions/setup-ruby@v1
26
+ with :
27
+ ruby-version : 2.6.x
28
+ - name : Rubocop
29
+ run : |
30
+ gem install bundler
31
+ bundle install --jobs 4 --retry 3
32
+ bundle exec rubocop -D -S
Load Diff This file was deleted.
You can’t perform that action at this time.
0 commit comments