Skip to content

chore: release main #112

chore: release main

chore: release main #112

Workflow file for this run

name: CI
on:
pull_request:
paths-ignore: [ '**/README.md', '**/CHANGELOG.md' ]
push:
paths-ignore: [ '**/README.md', '**/CHANGELOG.md' ]
jobs:
test:
if: "contains(github.event.commits[0].message, '[ci skip]') == false"
strategy:
fail-fast: false
matrix:
ruby: ["3.3", "3.2", "3.1", "3.0", "2.7", "2.6", "jruby", "truffleruby", "debug"]
runs-on: ubuntu-latest
continue-on-error: ${{ endsWith(matrix.ruby, 'head') || matrix.ruby == 'debug' }}
steps:
- uses: actions/checkout@v4
- run: rm Gemfile.lock
- name: Setup Ruby ${{ matrix.ruby }}
uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby }}
bundler-cache: true
- name: Run specs
run: bin/rake spec
coverage:
if: "contains(github.event.commits[0].message, '[ci skip]') == false"
runs-on: ubuntu-latest
env:
CC_TEST_REPORTER_ID: ${{ secrets.CC_TEST_REPORTER_ID }}
steps:
- uses: actions/checkout@v4
- uses: ruby/setup-ruby@v1
with:
bundler-cache: true
- name: Generate coverage
run: bin/rake test:coverage
- name: Upload code coverage report to Coveralls
uses: coverallsapp/github-action@v2
with:
file: coverage/lcov.info
debug: true
if: success()
continue-on-error: true
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v4
with:
token: ${{ secrets.CODECOV_TOKEN }}
files: coverage/lcov.info
verbose: true
if: success()
continue-on-error: true
- name: Upload code coverage data to CodeClimate
uses: paambaati/codeclimate-action@v5
with:
coverageLocations: coverage/coverage.json:simplecov
debug: true
if: success()
continue-on-error: true
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: ruby/setup-ruby@v1
with:
bundler-cache: true
- name: Enforce codestyle with `standard`
run: bin/rake lint:code
- name: Check Yard syntax with `yard-junk`
run: bin/rake lint:docs
- name: Check for vulnerable dependencies with `bundle-audit`
run: bin/rake lint:deps
docs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Check markdown files for broken links
uses: justinbeckwith/linkinator-action@v1
with:
paths: '*.md, .github/*.md'
verbosity: 'INFO'
skip: 'vendor/, astroband/ruby-xdr/compare'