Merge pull request #52 from yoshoku/dependabot/npm_and_yarn/js-yaml-4… #91
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 | |
| - dev* | |
| pull_request: | |
| jobs: | |
| rubocop: | |
| runs-on: ubuntu-latest | |
| name: RuboCop | |
| steps: | |
| - uses: actions/checkout@v5 | |
| - name: Set up Ruby 3.2 | |
| uses: ruby/setup-ruby@v1 | |
| with: | |
| ruby-version: 3.2 | |
| - name: Install BLAS and LAPACK for numo-linalg-alt | |
| run: sudo apt-get install -y libopenblas-dev liblapacke-dev | |
| - name: Run RuboCop | |
| run: bash rumale-rubocop.sh |