types #9603
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: Check | |
on: | |
push: | |
jobs: | |
lint: | |
runs-on: ubuntu-latest | |
container: | |
image: ghcr.io/datadog/images-rb/engines/ruby:3.2 | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Install dependencies | |
run: bundle install | |
- run: bundle exec rake rubocop standard | |
check: | |
name: Check types | |
runs-on: ubuntu-latest | |
container: | |
image: ghcr.io/datadog/images-rb/engines/ruby:3.2 | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Install dependencies | |
run: bundle install | |
- name: Check for stale signature files | |
run: bundle exec rake rbs:stale | |
- name: Check for missing signature files | |
run: bundle exec rake rbs:missing | |
- name: Check types | |
run: bundle exec rake steep:check | |
- name: Record stats | |
run: bundle exec rake steep:stats[md] >> $GITHUB_STEP_SUMMARY |