Skip to content

Don't re-run tests when creating a tag #34

Don't re-run tests when creating a tag

Don't re-run tests when creating a tag #34

Workflow file for this run

name: Ruby
on:
push:
branches:
- "**"
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
ruby-version: ["3.0", "3.1", "3.2", "3.3"]
name: "Tests on Ruby ${{ matrix.ruby }}"
steps:
- uses: actions/checkout@v4
- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby-version }}
bundler-cache: true
- name: Test and lint
run: bundle exec rake