Skip to content

Commit 98dad00

Browse files
ono-maxko1
authored andcommitted
Separate setup and execution steps in CI
1 parent 68f7753 commit 98dad00

File tree

4 files changed

+12
-8
lines changed

4 files changed

+12
-8
lines changed

.github/workflows/protocol.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,8 +30,9 @@ jobs:
3030
with:
3131
ruby-version: ${{ matrix.ruby-version }}
3232
bundler-cache: true
33-
- name: Run tests
33+
- name: Set up tests
3434
run: |
3535
bundle exec rake clobber
3636
bundle exec rake compile
37-
bundle exec rake test_protocol
37+
- name: Run tests
38+
run: bundle exec rake test_protocol

.github/workflows/ruby-macos.yaml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,8 +29,9 @@ jobs:
2929
with:
3030
ruby-version: ${{ matrix.ruby-version }}
3131
bundler-cache: true
32-
- name: Run tests
32+
- name: Set up tests
3333
run: |
3434
bundle exec rake clobber
3535
bundle exec rake compile
36-
bundle exec rake test_console
36+
- name: Run tests
37+
run: bundle exec rake test_console

.github/workflows/ruby.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,8 +30,9 @@ jobs:
3030
with:
3131
ruby-version: ${{ matrix.ruby-version }}
3232
bundler-cache: true
33-
- name: Run tests
33+
- name: Set up tests
3434
run: |
3535
bundle exec rake clobber
3636
bundle exec rake compile
37-
bundle exec rake test_console
37+
- name: Run tests
38+
run: bundle exec rake test_console

.github/workflows/test_test.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,8 +30,9 @@ jobs:
3030
with:
3131
ruby-version: ${{ matrix.ruby-version }}
3232
bundler-cache: true
33-
- name: Run tests
33+
- name: Set up tests
3434
run: |
3535
bundle exec rake clobber
3636
bundle exec rake compile
37-
bundle exec rake test_test
37+
- name: Run tests
38+
run: bundle exec rake test_test

0 commit comments

Comments
 (0)