Skip to content

Use semicolon instead of newline to minify #5

Use semicolon instead of newline to minify

Use semicolon instead of newline to minify #5

Workflow file for this run

name: CI
on:
push:
branches:
- master
pull_request:
workflow_dispatch:
concurrency:
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }}
cancel-in-progress: true
jobs:
main:
name: Ruby ${{ matrix.ruby }}
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
os: [ubuntu]
ruby: ['3.3', 'head']
steps:
- name: checkout
uses: actions/checkout@v4
- name: set up Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby }}
bundler-cache: true
- name: lint
run: bundle exec rake rubocop
- name: spec
run: bundle exec rake spec