Skip to content

Update documentation and fix typos (#376) #342

Update documentation and fix typos (#376)

Update documentation and fix typos (#376) #342

Workflow file for this run

name: Tests
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
workflow_dispatch:
schedule:
# 00:00 on the 1st of every month
- cron: '0 0 1 * *'
jobs:
test:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
ruby: ['3.2', '3.3', '3.4', 'jruby-10.0']
env:
BUNDLE_WITHOUT: optional
steps:
- uses: actions/checkout@v6.0.1
- uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby }}
bundler-cache: true
- name: Tests for Ruby ${{ matrix.ruby }}
run: bundle exec rake
- uses: qltysh/qlty-action/coverage@v2
with:
token: ${{ secrets.QLTY_COVERAGE_TOKEN }}
files: coverage/.resultset.json
# CodeClimate has become qlth.sh, this integration is currently broken.
# coverage:
# needs: test
# runs-on: ubuntu-latest
# env:
# BUNDLE_WITHOUT: optional
# steps:
# - uses: actions/checkout@v6.0.1
# - uses: ruby/setup-ruby@v1
# with:
# bundler-cache: true
# - name: Publish code coverage
# uses: paambaati/codeclimate-action@v9
# env:
# CC_TEST_REPORTER_ID: ${{ secrets.CC_TEST_REPORTER_ID }}
# with:
# coverageCommand: bundle exec rake
yard:
runs-on: ubuntu-latest
env:
BUNDLE_WITHOUT: optional
steps:
- uses: actions/checkout@v6.0.1
- uses: ruby/setup-ruby@v1
with:
bundler-cache: true
- name: Build YARD docs
run: bundle exec yard doc --fail-on-warning