Skip to content

CI

CI #230

Workflow file for this run

---
name: CI
on:
push:
pull_request:
schedule:
- cron: 0 0 * * 0
jobs:
ci:
runs-on: ubuntu-latest
strategy:
matrix:
ruby-version:
- '3.1'
- '3.3'
env:
CC_TEST_REPORTER_ID: "${{ secrets.CC_TEST_REPORTER_ID }}"
steps:
- uses: actions/checkout@v4
- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: "${{ matrix.ruby-version }}"
bundler-cache: true
timeout-minutes: 30
- name: Run tests
run: bundle exec rake
- name: Report code coverage
if: ${{ github.ref == 'refs/heads/master' && matrix.ruby-version = '3.3' }}

Check failure on line 29 in .github/workflows/ci.yaml

View workflow run for this annotation

GitHub Actions / CI

Invalid workflow file

The workflow is not valid. .github/workflows/ci.yaml (Line: 29, Col: 11): Unexpected symbol: '='. Located at position 58 within expression: github.ref == 'refs/heads/master' && matrix.ruby-version = '3.3'
continue-on-error: true
uses: paambaati/codeclimate-action@v9