-
-
Notifications
You must be signed in to change notification settings - Fork 105
43 lines (34 loc) · 797 Bytes
/
test-select.yaml
File metadata and controls
43 lines (34 loc) · 797 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
name: Test
on: [push, pull_request]
permissions:
contents: read
env:
CONSOLE_OUTPUT: XTerm
IO_EVENT_SELECTOR: Select
jobs:
test:
name: ${{matrix.ruby}} on ${{matrix.os}} / IO_EVENT_SELECTOR=Select
runs-on: ${{matrix.os}}-latest
strategy:
matrix:
os:
- ubuntu
- macos
ruby:
- "3.3"
- "3.4"
- "4.0"
- head
steps:
- uses: actions/checkout@v3
- uses: ruby/setup-ruby@v1
with:
ruby-version: ${{matrix.ruby}}
bundler-cache: true
- name: Run tests
timeout-minutes: 10
run: bundle exec bake test
# Maybe buggy.
# - name: Run external tests
# timeout-minutes: 10
# run: bundle exec bake test:external