Skip to content

fix: ci folder spelling mistake #1

fix: ci folder spelling mistake

fix: ci folder spelling mistake #1

Workflow file for this run

name: CI
on: [push, pull_request]

Check failure on line 4 in .github/workflows/ci.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/ci.yml

Invalid workflow file

You have an error in your yaml syntax on line 4
pull_request:
jobs:
build:
runs-on: ubuntu-latest
name: Ruby ${{ matrix.ruby }}
strategy:
matrix:
include:
- ruby_version: "2.7"
- ruby_version: "3.0"
- ruby-version: "3.1"
- ruby-version: "3.2"
steps:
- uses: actions/checkout@v3
- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby_version }}
bundler-cache: true
- name: Run the default task
run: bundle exec rake