From f4f9c44288c34a2dc0b673fdfb47ad7a21aa3af6 Mon Sep 17 00:00:00 2001 From: "Daniel (dB.) Doubrovkine" Date: Wed, 22 Oct 2025 12:57:02 -0400 Subject: [PATCH] Fix: run CI on all pull requests. --- .github/workflows/main.yml | 11 +++-------- 1 file changed, 3 insertions(+), 8 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index d728204..1aecd9d 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -1,10 +1,6 @@ name: Ruby -on: - push: - branches: [ main ] - pull_request: - branches: [ main ] +on: [push, pull_request] jobs: test: @@ -17,7 +13,6 @@ jobs: uses: ruby/setup-ruby@359bebbc29cbe6c87da6bc9ea3bc930432750108 with: ruby-version: '3.1' - - name: Install dependencies - run: bundle install + bundler-cache: true - name: Run tests - run: ruby test/test_tcxread.rb + run: bundle exec rake test