Skip to content

Commit

Permalink
feat(ci): implement typechecking & linting CI check
Browse files Browse the repository at this point in the history
  • Loading branch information
DerekStride committed Jan 5, 2024
1 parent 6cfad52 commit 0a468ab
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -101,6 +101,20 @@ jobs:
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

lint-and-typecheck:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: setup ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: 3.3
bundler-cache: true
- name: Typecheck
run: bundle exec srb tc
- name: Lint
run: bundle exec rubocop

disable-sys-libs:
strategy:
fail-fast: false
Expand Down

0 comments on commit 0a468ab

Please sign in to comment.