File tree Expand file tree Collapse file tree 1 file changed +4
-10
lines changed Expand file tree Collapse file tree 1 file changed +4
-10
lines changed Original file line number Diff line number Diff line change 1+ ---
12name : Validate Puppetcore Gem Sources
2-
33on :
44 workflow_dispatch :
55 inputs :
66 ref :
7- description : ' Branch, tag or SHA to checkout'
7+ description : Branch, tag or SHA to checkout
88 required : true
9- default : ' main'
10-
9+ default : main
1110jobs :
1211 verify-gemfile :
1312 runs-on : ubuntu-latest
1413 name : Verify Gemfile Dependencies
15-
1614 env :
1715 PUPPET_FORGE_TOKEN : ${{ secrets.PUPPET_FORGE_TOKEN }}
18- BUNDLE_RUBYGEMS___PUPPETCORE__PUPPET__COM : " forge-key:${{ secrets.PUPPET_FORGE_TOKEN }}"
19-
16+ BUNDLE_RUBYGEMS___PUPPETCORE__PUPPET__COM : forge-key:${{ secrets.PUPPET_FORGE_TOKEN }}
2017 steps :
2118 - name : Checkout repository
2219 uses : actions/checkout@v4
2320 with :
2421 ref : ${{ github.event.inputs.ref }}
25-
2622 - name : Set up Ruby
2723 uses : ruby/setup-ruby@v1
2824 with :
2925 ruby-version : ' 3.2'
3026 bundler-cache : true
3127 cache-version : 0 # Helps manage cache versions explicitly
3228 working-directory : .
33-
3429 - name : Install dependencies
3530 run : bundle install
36-
3731 - name : Run Gemfile verification test
3832 run : bundle exec rspec spec/support/gemfile_spec.rb --format documentation
You can’t perform that action at this time.
0 commit comments