Skip to content

build(deps-dev): bump json from 2.21.1 to 2.21.2 in the bundler group across 1 directory #40

build(deps-dev): bump json from 2.21.1 to 2.21.2 in the bundler group across 1 directory

build(deps-dev): bump json from 2.21.1 to 2.21.2 in the bundler group across 1 directory #40

Workflow file for this run

name: CI
on:
push:
branches:
- main
- master
pull_request:
permissions:
contents: read
jobs:
tests:
strategy:
matrix:
platform: ["ubuntu-latest", "macos-latest"]
ruby: ["3.3", "3.4", "4.0"]
runs-on: ${{ matrix.platform }}
steps:
- name: Set up Git repository
uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
with:
persist-credentials: false
- name: Set up Ruby
uses: ruby/setup-ruby@95ef2b042f9d7a56d8268cba8559e2842e2ad01b # v1.321.0
with:
ruby-version: ${{ matrix.ruby }}
bundler-cache: true
- name: Run tests
env:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
run: bundle exec rake
- name: Upload coverage results
uses: codecov/codecov-action@fb8b3582c8e4def4969c97caa2f19720cb33a72f # v7.0.0
with:
files: coverage/coverage.xml
disable_search: true
token: ${{ secrets.CODECOV_TOKEN }}
conclusion:
needs: tests
if: always()
runs-on: ubuntu-slim
steps:
- name: Result
env:
RESULT: ${{ needs.tests.result }}
run: |
[[ "${RESULT}" == success ]]