Move from Codeclimate to Qlty #824
Workflow file for this run
This file contains hidden or 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: test | |
on: | |
push: | |
branches: | |
- "*" | |
pull_request: | |
branches: | |
- "*" | |
jobs: | |
lint: | |
name: RuboCop | |
timeout-minutes: 30 | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up Ruby | |
uses: ruby/setup-ruby@v1 | |
with: | |
ruby-version: ruby | |
bundler-cache: true | |
- name: Run RuboCop | |
run: bundle exec rubocop | |
test: | |
name: ${{ matrix.os }} - Ruby ${{ matrix.ruby }} - ${{ matrix.gemfile }} | |
runs-on: ${{ matrix.os }} | |
strategy: | |
fail-fast: false | |
matrix: | |
os: | |
- ubuntu-latest | |
ruby: | |
- "2.5" | |
- "2.6" | |
- "2.7" | |
- "3.0" | |
- "3.1" | |
- "3.2" | |
- "3.3" | |
- "3.4" | |
gemfile: | |
- gemfiles/standalone.gemfile | |
experimental: [false] | |
include: | |
- os: ubuntu-latest | |
ruby: "3.0" | |
gemfile: 'gemfiles/openssl.gemfile' | |
experimental: false | |
- os: ubuntu-latest | |
ruby: "truffleruby-head" | |
gemfile: 'gemfiles/standalone.gemfile' | |
experimental: true | |
- os: ubuntu-latest | |
ruby: "head" | |
gemfile: 'gemfiles/standalone.gemfile' | |
experimental: true | |
continue-on-error: ${{ matrix.experimental }} | |
env: | |
BUNDLE_GEMFILE: ${{ matrix.gemfile }} | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up Ruby | |
uses: ruby/setup-ruby@v1 | |
with: | |
ruby-version: ${{ matrix.ruby }} | |
bundler-cache: true | |
- name: Run tests | |
run: bundle exec rspec | |
- name: Sanitize gemfile path | |
run: echo "SANITIZED_GEMFILE=${{ matrix.gemfile }}" | tr '/' '-' >> $GITHUB_ENV | |
- name: Upload test coverage folder for later reporting | |
uses: actions/upload-artifact@v4 | |
with: | |
name: coverage-${{ matrix.os }}-${{ matrix.ruby }}-${{ env.SANITIZED_GEMFILE }} | |
path: coverage-*/*.json | |
retention-days: 1 | |
coverage: | |
name: Report coverage to Qlty | |
runs-on: ubuntu-latest | |
needs: test | |
if: success() | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Download coverage reports from the test job | |
uses: actions/download-artifact@v4 | |
with: | |
merge-multiple: true | |
- uses: qltysh/qlty-action/coverage@main | |
with: | |
token: ${{ secrets.QLTY_COVERAGE_TOKEN }} | |
files: coverage-*/*.json | |
smoke: | |
name: Built GEM smoke test | |
timeout-minutes: 30 | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up Ruby | |
uses: ruby/setup-ruby@v1 | |
with: | |
ruby-version: ruby | |
- name: Build GEM | |
run: gem build | |
- name: Install built GEM | |
run: gem install jwt-*.gem | |
- name: Run test | |
run: bin/smoke.rb |