Skip to content

Commit 1f4d4f8

Browse files
committed
Separate out external tests.
1 parent b120e65 commit 1f4d4f8

File tree

2 files changed

+28
-5
lines changed

2 files changed

+28
-5
lines changed

.github/workflows/development.yml

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -42,8 +42,3 @@ jobs:
4242
- name: Run tests
4343
timeout-minutes: 5
4444
run: ${{matrix.env}} bundle exec rspec
45-
46-
- name: Run external tests
47-
timeout-minutes: 5
48-
if: matrix.experimental == false && matrix.os == 'ubuntu'
49-
run: ${{matrix.env}} bundle exec bake external

.github/workflows/external.yml

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
name: External
2+
3+
on: [push, pull_request]
4+
5+
jobs:
6+
test:
7+
name: ${{matrix.ruby}} on ${{matrix.os}}
8+
runs-on: ${{matrix.os}}-latest
9+
10+
strategy:
11+
matrix:
12+
os:
13+
- ubuntu
14+
15+
ruby:
16+
- "3.1.1"
17+
- "head"
18+
19+
steps:
20+
- uses: actions/checkout@v2
21+
- uses: ruby/setup-ruby@v1
22+
with:
23+
ruby-version: ${{matrix.ruby}}
24+
bundler-cache: true
25+
26+
- name: Run tests
27+
timeout-minutes: 5
28+
run: ${{matrix.env}} bundle exec bake external

0 commit comments

Comments
 (0)