Skip to content

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":

Check failure on line 10 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: 10, Col: 3): The identifier 'ci/test/ruby' is invalid. IDs may only contain alphanumeric characters, '_', and '-'. IDs must start with a letter or '_' and and must be less than 100 characters.
runs-on: ubuntu-latest
strategy:
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