Upgrade gems #128
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: License Finder | |
| on: | |
| push: | |
| branches: [ main ] | |
| pull_request: | |
| branches: [ main ] | |
| jobs: | |
| check: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v3 | |
| name: Checkout repository | |
| - uses: ruby/setup-ruby@v1 | |
| name: Setup ruby | |
| with: | |
| ruby-version: 3.4 | |
| bundler-cache: true | |
| - run: bundle exec license_finder | |
| name: Run license finder |