feat: add sanitization layer #8
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: CI | |
on: [pull_request] | |
jobs: | |
ci: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up Ruby | |
uses: ruby/setup-ruby@v1 | |
with: | |
ruby-version: .ruby-version | |
bundler-cache: true | |
- name: Set up project | |
run: bin/setup | |
- name: Run Standard | |
run: bundle exec standardrb --fail-level A | |
- name: Run Annotate | |
run: bundle exec annotate --frozen | |
- name: Run Chusaku | |
run: bundle exec chusaku --dry-run --exit-with-error-on-annotation | |
- name: Run test suite | |
run: bin/rails test |