Remove set from rbs manifest.yaml #137
Workflow file for this run
This file contains hidden or 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: | |
| branches: [main] | |
| permissions: | |
| contents: read | |
| jobs: | |
| lint: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v7 | |
| - name: Set up Ruby | |
| uses: ruby/setup-ruby@v1 | |
| with: | |
| ruby-version: "3.4" | |
| bundler-cache: true | |
| - name: RuboCop | |
| run: bin/rubocop --format github --format clang | |
| # Resolves the sigs via gem discovery, the way a consumer does, so | |
| # sig/manifest.yaml and the gemspec dependencies are exercised too. | |
| # Listing the libraries by hand instead would skip both. | |
| - name: RBS | |
| run: bin/rbs --no-collection -r money validate |