Skip to content

update faraday v2

update faraday v2 #7

Workflow file for this run

name: build
on: [push, pull_request]
env:
BACKLOG_SPACE_ID: ${{ secrets.BACKLOG_SPACE_ID }}
BACKLOG_API_KEY: ${{ secrets.BACKLOG_API_KEY }}
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
ruby: [2.7, 3.0, 3.1, 3.2, 3.3]
steps:
- uses: actions/checkout@v4
- uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby }}
- name: Install dependencies
run: bundle install --jobs 4 --retry 3
- name: Run test
run: bundle exec rake
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v4
with:
file: ./coverage/.resultset.json