Skip to content

Upgrade Temml to v0.10.28 #88

Upgrade Temml to v0.10.28

Upgrade Temml to v0.10.28 #88

Workflow file for this run

# SPDX-License-Identifier: CC0-1.0
name: Lint and test
on:
push:
branches:
- main
pull_request:
workflow_dispatch:
jobs:
rubocop:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
ruby-version: ['3.3', '3.2', '3.1']
steps:
- uses: actions/checkout@v4
- name: Set up Ruby ${{ matrix.ruby-version }}
uses: ruby/setup-ruby@v1
with:
bundler-cache: true
ruby-version: ${{ matrix.ruby-version }}
- name: Run Rubocop
run: bundle exec rubocop
rspec:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
ruby-version: ['3.3', '3.2', '3.1']
env:
COVERAGE: '1'
steps:
- uses: actions/checkout@v4
- name: Set up Ruby ${{ matrix.ruby-version }}
uses: ruby/setup-ruby@v1
with:
bundler-cache: true
ruby-version: ${{ matrix.ruby-version }}
- name: Run RSpec
run: bundle exec rspec --format d