From 696ec7570960591682dc2167dde7b5ff95ad265c Mon Sep 17 00:00:00 2001 From: Maddie Date: Wed, 7 Aug 2024 16:36:44 -0600 Subject: [PATCH] Create tests.yml --- .github/workflows/tests.yml | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 .github/workflows/tests.yml diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml new file mode 100644 index 0000000..228ee40 --- /dev/null +++ b/.github/workflows/tests.yml @@ -0,0 +1,22 @@ +name: Test +on: + push: + branches: [ "main" ] + pull_request: {} +permissions: + contents: read +jobs: + test: + runs-on: ubuntu-latest + strategy: + matrix: + ruby-version: ['3.0', '3.1'] + steps: + - uses: actions/checkout@v4 + - name: Set up Ruby + uses: ruby/setup-ruby@v1 + with: + ruby-version: ${{ matrix.ruby-version }} + bundler-cache: true + - name: Run tests + run: bundle exec rspec