We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6c8deaf commit 1719fc6Copy full SHA for 1719fc6
.github/workflows/main.yml
@@ -96,3 +96,24 @@ jobs:
96
ruby-version: "3.3"
97
bundler-cache: true
98
- run: NO_COVERAGE=true bundle exec rake spec
99
+
100
+ prism:
101
+ runs-on: ubuntu-latest
102
+ name: Prism
103
+ steps:
104
+ - uses: actions/checkout@v4
105
+ - name: Use prism parser
106
+ run: |
107
+ cat << EOF > Gemfile.local
108
+ gem 'prism'
109
+ EOF
110
+ - name: set up Ruby
111
+ uses: ruby/setup-ruby@v1
112
+ with:
113
+ # Specify the minimum Ruby version 2.7 required for Prism to run.
114
+ ruby-version: 2.7
115
+ bundler-cache: true
116
+ - name: spec
117
+ env:
118
+ PARSER_ENGINE: parser_prism
119
+ run: NO_COVERAGE=true bundle exec rake spec
0 commit comments