summaryrefslogtreecommitdiff
path: root/vendor/bundle/ruby/3.4.0/gems/terminal-table-3.0.2/.github/workflows
diff options
context:
space:
mode:
Diffstat (limited to 'vendor/bundle/ruby/3.4.0/gems/terminal-table-3.0.2/.github/workflows')
-rw-r--r--vendor/bundle/ruby/3.4.0/gems/terminal-table-3.0.2/.github/workflows/ci.yml28
1 files changed, 28 insertions, 0 deletions
diff --git a/vendor/bundle/ruby/3.4.0/gems/terminal-table-3.0.2/.github/workflows/ci.yml b/vendor/bundle/ruby/3.4.0/gems/terminal-table-3.0.2/.github/workflows/ci.yml
new file mode 100644
index 0000000..f3b8591
--- /dev/null
+++ b/vendor/bundle/ruby/3.4.0/gems/terminal-table-3.0.2/.github/workflows/ci.yml
@@ -0,0 +1,28 @@
+name: CI
+on: [push]
+
+jobs:
+ test:
+ if: "!contains(github.event.head_commit.message, 'ci skip')"
+
+ continue-on-error: ${{ endsWith(matrix.ruby, 'head') || matrix.ruby == 'debug' }}
+
+ strategy:
+ fail-fast: false
+
+ matrix:
+ os: [ubuntu]
+ ruby: [2.4, 2.5, 2.6, 2.7]
+
+ runs-on: ${{ matrix.os }}-latest
+
+ steps:
+ - uses: actions/checkout@v2
+
+ - uses: ruby/setup-ruby@v1
+ with:
+ bundler-cache: true
+ ruby-version: ${{ matrix.ruby }}
+
+ - run: bundle install
+ - run: bundle exec rspec