Skip to content

Commit a16e33e

Browse files
committed
Split rubocop and rspec. Fix typo in variable name.
1 parent 059e349 commit a16e33e

File tree

3 files changed

+39
-3
lines changed

3 files changed

+39
-3
lines changed

.github/workflows/linux.yaml

Lines changed: 13 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ name: linux
44
on: [push, pull_request]
55

66
jobs:
7-
"rubocop_and_rspec":
7+
"rubocop":
88
runs-on: ubuntu-latest
99
steps:
1010
- uses: actions/checkout@v2
@@ -17,6 +17,18 @@ jobs:
1717
bundle install
1818
bundle exec rubocop --version
1919
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
2032
bundle exec rspec --backtrace
2133
2234
"TestSomething":

.github/workflows/macos.yaml

Lines changed: 13 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ name: macos
44
on: [push, pull_request]
55

66
jobs:
7-
"rubocop_and_rspec":
7+
"rubocop":
88
runs-on: macos-latest
99
steps:
1010
- uses: actions/checkout@v2
@@ -17,6 +17,18 @@ jobs:
1717
bundle install
1818
bundle exec rubocop --version
1919
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
2032
bundle exec rspec --backtrace
2133
2234
"TestSomething":

.github/workflows/windows.yaml

Lines changed: 13 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ name: windows
44
on: [push, pull_request]
55

66
jobs:
7-
"unittest_lint_sampleproject":
7+
"rubocop":
88
runs-on: windows-latest
99
steps:
1010
- uses: actions/checkout@v2
@@ -17,6 +17,18 @@ jobs:
1717
bundle install
1818
bundle exec rubocop --version
1919
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
2032
bundle exec rspec --backtrace
2133
2234
"TestSomething":

0 commit comments

Comments
 (0)