Add try_load descendant-chain spec and deep descendant lookup #216
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: Linters | |
| on: | |
| push: | |
| branches: [master] | |
| pull_request: | |
| branches: [master] | |
| jobs: | |
| rubocop: | |
| runs-on: ubuntu-22.04 | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Downgrade to CMake 3.27 | |
| run: | | |
| sudo apt-get remove -y cmake | |
| wget https://github.com/Kitware/CMake/releases/download/v3.27.9/cmake-3.27.9-linux-x86_64.sh | |
| chmod +x cmake-3.27.9-linux-x86_64.sh | |
| sudo ./cmake-3.27.9-linux-x86_64.sh --skip-license --prefix=/usr/local | |
| - run: cmake --version | |
| - name: Set up ruby | |
| uses: ruby/setup-ruby@v1 | |
| with: | |
| bundler-cache: true | |
| ruby-version: 3.0 | |
| - name: Run rubocop | |
| run: bundle exec rubocop |