Add specs for include bracket/dot access, liquid tag, and multiline i… #432
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: Ruby | |
| on: | |
| push: | |
| branches: [main] | |
| pull_request: | |
| branches: [main] | |
| permissions: | |
| contents: read | |
| jobs: | |
| test: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 | |
| - name: Ruby | |
| uses: ruby/setup-ruby@97ecb7b512899eb71ab1bf2310a624c6f1589ac6 # v1.308.0 | |
| with: | |
| ruby-version: '3.3' | |
| bundler-cache: true | |
| - name: Run unit tests | |
| run: bundle exec rake test | |
| - name: Run liquid-spec | |
| run: bundle exec rake run | |
| - name: Check feature tag coverage | |
| run: bundle exec rake coverage_check |