summaryrefslogtreecommitdiff
path: root/vendor/bundle/ruby/3.4.0/gems/rb-inotify-0.11.1/.github
diff options
context:
space:
mode:
Diffstat (limited to 'vendor/bundle/ruby/3.4.0/gems/rb-inotify-0.11.1/.github')
-rw-r--r--vendor/bundle/ruby/3.4.0/gems/rb-inotify-0.11.1/.github/workflows/test.yaml53
1 files changed, 53 insertions, 0 deletions
diff --git a/vendor/bundle/ruby/3.4.0/gems/rb-inotify-0.11.1/.github/workflows/test.yaml b/vendor/bundle/ruby/3.4.0/gems/rb-inotify-0.11.1/.github/workflows/test.yaml
new file mode 100644
index 0000000..4b9d68b
--- /dev/null
+++ b/vendor/bundle/ruby/3.4.0/gems/rb-inotify-0.11.1/.github/workflows/test.yaml
@@ -0,0 +1,53 @@
+name: Test
+
+on: [push, pull_request]
+
+permissions:
+ contents: read
+
+env:
+ CONSOLE_OUTPUT: XTerm
+
+jobs:
+ test:
+ name: ${{matrix.ruby}} on ${{matrix.os}}
+ runs-on: ${{matrix.os}}-latest
+ continue-on-error: ${{matrix.experimental}}
+
+ strategy:
+ matrix:
+ os:
+ - ubuntu
+
+ ruby:
+ - "2.5"
+ - "2.6"
+ - "2.7"
+ - "3.0"
+ - "3.1"
+ - "3.2"
+ - "3.3"
+
+ experimental: [false]
+
+ include:
+ - os: ubuntu
+ ruby: truffleruby
+ experimental: true
+ - os: ubuntu
+ ruby: jruby
+ experimental: true
+ - os: ubuntu
+ ruby: head
+ experimental: true
+
+ steps:
+ - uses: actions/checkout@v4
+ - uses: ruby/setup-ruby@v1
+ with:
+ ruby-version: ${{matrix.ruby}}
+ bundler-cache: true
+
+ - name: Run tests
+ timeout-minutes: 10
+ run: bundle exec rspec