File tree Expand file tree Collapse file tree 3 files changed +39
-3
lines changed Expand file tree Collapse file tree 3 files changed +39
-3
lines changed Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ name: linux
4
4
on : [push, pull_request]
5
5
6
6
jobs :
7
- " rubocop_and_rspec " :
7
+ " rubocop " :
8
8
runs-on : ubuntu-latest
9
9
steps :
10
10
- uses : actions/checkout@v2
17
17
bundle install
18
18
bundle exec rubocop --version
19
19
bundle exec rubocop -D .
20
+
21
+ " rspec " :
22
+ runs-on : ubuntu-latest
23
+ steps :
24
+ - uses : actions/checkout@v2
25
+ - uses : ruby/setup-ruby@v1
26
+ with :
27
+ ruby-version : 2.6
28
+ - name : Check style, functionality, and usage
29
+ run : |
30
+ g++ -v
31
+ bundle install
20
32
bundle exec rspec --backtrace
21
33
22
34
" TestSomething " :
Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ name: macos
4
4
on : [push, pull_request]
5
5
6
6
jobs :
7
- " rubocop_and_rspec " :
7
+ " rubocop " :
8
8
runs-on : macos-latest
9
9
steps :
10
10
- uses : actions/checkout@v2
17
17
bundle install
18
18
bundle exec rubocop --version
19
19
bundle exec rubocop -D .
20
+
21
+ " rspec " :
22
+ runs-on : macos-latest
23
+ steps :
24
+ - uses : actions/checkout@v2
25
+ - uses : ruby/setup-ruby@v1
26
+ with :
27
+ ruby-version : 2.6
28
+ - name : Check style, functionality, and usage
29
+ run : |
30
+ g++ -v
31
+ bundle install
20
32
bundle exec rspec --backtrace
21
33
22
34
" TestSomething " :
Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ name: windows
4
4
on : [push, pull_request]
5
5
6
6
jobs :
7
- " unittest_lint_sampleproject " :
7
+ " rubocop " :
8
8
runs-on : windows-latest
9
9
steps :
10
10
- uses : actions/checkout@v2
17
17
bundle install
18
18
bundle exec rubocop --version
19
19
bundle exec rubocop -D .
20
+
21
+ " rspec " :
22
+ runs-on : windows-latest
23
+ steps :
24
+ - uses : actions/checkout@v2
25
+ - uses : ruby/setup-ruby@v1
26
+ with :
27
+ ruby-version : 2.6
28
+ - name : Check style, functionality, and usage
29
+ run : |
30
+ g++ -v
31
+ bundle install
20
32
bundle exec rspec --backtrace
21
33
22
34
" TestSomething " :
You can’t perform that action at this time.
0 commit comments