Bump json from 2.9.0 to 2.9.1 #1005
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: Run RuboCop and RSpec | |
on: | |
pull_request: | |
branches: | |
- '*' | |
push: | |
branches: | |
- main | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: ruby/setup-ruby@v1 | |
with: | |
bundler-cache: true | |
- name: Run RuboCop | |
run: bin/rubocop --format clang | |
- name: Run RSpec tests | |
run: bin/rspec --format progress | |
- name: Ensure alpha version | |
run: grep alpha $(find . -type f -name version.rb) | |
- name: Ensure no git diff | |
run: git diff --exit-code && git diff-index --quiet --cached HEAD | |
- name: Ensure "## Unreleased" is in CHANGELOG.md | |
run: grep "^## Unreleased" CHANGELOG.md | |
- name: Upload Code Coverage | |
uses: codecov/codecov-action@v4 | |
with: | |
directory: tmp/simple_cov | |
token: ${{ secrets.CODECOV_TOKEN }} |