.github/workflows/ci.yml in terminal-table-3.0.2 vs .github/workflows/ci.yml in terminal-table-4.0.0

- old
+ new

@@ -1,7 +1,7 @@ name: CI -on: [push] +on: [push, pull_request, workflow_dispatch] jobs: test: if: "!contains(github.event.head_commit.message, 'ci skip')" @@ -10,19 +10,18 @@ strategy: fail-fast: false matrix: os: [ubuntu] - ruby: [2.4, 2.5, 2.6, 2.7] + ruby: [2.4, 2.5, 2.6, 2.7, '3.0', 3.1, 3.2, 3.3, 3.4] runs-on: ${{ matrix.os }}-latest steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v4 - uses: ruby/setup-ruby@v1 with: bundler-cache: true ruby-version: ${{ matrix.ruby }} - - run: bundle install - run: bundle exec rspec