Skip to content

Commit

Permalink
Add workflow to run Sorbet type checker
Browse files Browse the repository at this point in the history
  • Loading branch information
cheshire137 committed Nov 24, 2024
1 parent 1eaddce commit 6a6e2bf
Showing 1 changed file with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions .github/workflows/run_tests.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
name: Run tests

on:
push:
pull_request:

permissions:
contents: read

jobs:
run-tests:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4

- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
bundler-cache: true
ruby-version: ruby

- name: Install dependencies
run: bundle install

- name: Check types
run: bundle exec srb tc

0 comments on commit 6a6e2bf

Please sign in to comment.