Skip to content
This repository has been archived by the owner on Feb 8, 2024. It is now read-only.

Update ci pipeline name #130

Update ci pipeline name

Update ci pipeline name #130

Workflow file for this run

name: Ruby CI
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
"ci/test/ruby":
runs-on: ubuntu-latest
ci_test_rubyy:

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

View workflow run for this annotation

GitHub Actions / Ruby CI

Invalid workflow file

The workflow is not valid. .github/workflows/ci.yml (Line: 12, Col: 5): Unexpected value 'ci_test_rubyy'
matrix:
ruby-version: [3.1, 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 # runs 'bundle install' and caches installed gems automatically
- name: Run tests
run: bundle exec rake ci