This repository has been archived by the owner on May 3, 2024. It is now read-only.
Bump the rubocop-dependencies group with 1 update #310
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: Lint | |
on: | |
push: | |
branches: | |
- 'main' | |
pull_request: | |
workflow_dispatch: | |
jobs: | |
rubocop: | |
timeout-minutes: 15 | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: ruby/setup-ruby@v1 | |
with: | |
bundler-cache: true | |
- run: bundle exec rake rubocop | |
dprint: | |
timeout-minutes: 15 | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: dprint/[email protected] | |
with: | |
# Keep same version as used in *.nix | |
dprint-version: '0.40.0' | |
typos: | |
timeout-minutes: 15 | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
# Keep same version as used in *.nix | |
- uses: crate-ci/[email protected] | |
with: | |
files: | | |
. | |
.github | |
.vscode |