Skip to content

Commit b4cac32

Browse files
committed
Add OS names to tests, stop printing CI backtrace
1 parent 286dba2 commit b4cac32

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

Diff for: .github/workflows/linux.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
bundle exec rubocop --version
1919
bundle exec rubocop -D .
2020
21-
"rspec":
21+
"rspec-linux":
2222
runs-on: ubuntu-latest
2323
steps:
2424
- uses: actions/checkout@v2
@@ -29,7 +29,7 @@ jobs:
2929
run: |
3030
g++ -v
3131
bundle install
32-
bundle exec rspec --backtrace
32+
bundle exec rspec
3333
3434
"TestSomething":
3535
runs-on: ubuntu-latest

Diff for: .github/workflows/macos.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
bundle exec rubocop --version
1919
bundle exec rubocop -D .
2020
21-
"rspec":
21+
"rspec-macos":
2222
runs-on: macos-latest
2323
steps:
2424
- uses: actions/checkout@v2
@@ -29,7 +29,7 @@ jobs:
2929
run: |
3030
g++ -v
3131
bundle install
32-
bundle exec rspec --backtrace
32+
bundle exec rspec
3333
3434
"TestSomething":
3535
runs-on: macos-latest

Diff for: .github/workflows/windows.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
bundle exec rubocop --version
1919
bundle exec rubocop -D . --except Layout/EndOfLine
2020
21-
"rspec":
21+
"rspec-windows":
2222
runs-on: windows-latest
2323
steps:
2424
- uses: actions/checkout@v2
@@ -29,7 +29,7 @@ jobs:
2929
run: |
3030
g++ -v
3131
bundle install
32-
bundle exec rspec --backtrace
32+
bundle exec rspec
3333
3434
TestSomething:
3535
runs-on: windows-latest

0 commit comments

Comments
 (0)