chore: bootstrap releases for 'xdr' gem #87
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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.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@v2 | |
- 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 | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: ruby/setup-ruby@v1 | |
with: | |
bundler-cache: true | |
- name: Upload code coverage data to CodeClimate | |
uses: paambaati/[email protected] | |
env: | |
CC_TEST_REPORTER_ID: ${{ secrets.CC_TEST_REPORTER_ID }} | |
with: | |
coverageCommand: bin/rake test:coverage | |
debug: true | |
lint: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- 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@v2 | |
- 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' |