Skip to content

Remove unnecessary files #27

Remove unnecessary files

Remove unnecessary files #27

Workflow file for this run

name: CI
on:
pull_request:
paths-ignore:
- **.md

Check failure on line 6 in .github/workflows/main.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/main.yml

Invalid workflow file

You have an error in your yaml syntax on line 6
push:
branches:
- master
paths-ignore:
- **.md
workflow_dispatch:
jobs:
rspec:
runs-on: ubuntu-latest
strategy:
matrix:
ruby:
- "2.7"
- "3.0"
- "3.1"
- "3.2"
- "3.3"
- "3.4"
name: "Ruby ${{ matrix.ruby }}: run rspec"
steps:
- uses: actions/checkout@v3
- uses: ruby/setup-ruby@v1
with:
ruby-version: "${{ matrix.ruby }}"
bundler-cache: true
- run: bundle exec rspec
rubocop:
runs-on: ubuntu-latest
strategy:
matrix:
ruby:
- "2.7"
- "3.0"
- "3.1"
- "3.2"
- "3.3"
- "3.4"
name: "Ruby ${{ matrix.ruby }}: run rubocop"
steps:
- uses: actions/checkout@v3
- uses: ruby/setup-ruby@v1
with:
ruby-version: "${{ matrix.ruby }}"
bundler-cache: true
- run: bundle exec rubocop