Skip to content

docs: move badges inline with title #5

docs: move badges inline with title

docs: move badges inline with title #5

Workflow file for this run

name: CI
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
on:
push:
branches: ["master"]
pull_request:
branches: ["master"]
permissions:
contents: read
jobs:
build:
runs-on: ubuntu-latest
name: Ruby ${{ matrix.ruby_version }}
strategy:
matrix:
ruby_version: [ruby-head, '4.0', '3.4', '3.3', '3.2']
env:
COVERAGE: true
steps:
- uses: actions/checkout@v4
- uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby_version }}
bundler-cache: true
continue-on-error: ${{ matrix.ruby_version == 'ruby-head' }}
- run: bundle exec rake
continue-on-error: ${{ matrix.ruby_version == 'ruby-head' }}
- name: Upload coverage reports to Codecov
uses: codecov/codecov-action@v5
with:
token: ${{ secrets.CODECOV_TOKEN }}
slug: svyatov/http_wrapper
# Only upload coverage for the latest stable Ruby version
if: ${{ matrix.ruby_version == '3.4' }}