Merge pull request #53349 from jhawthorn/releaser_improvements #3
This file contains 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: Rails releaser tests | |
on: | |
pull_request: | |
paths: | |
- "tools/releaser/**" | |
push: | |
paths: | |
- "tools/releaser/**" | |
permissions: | |
contents: read | |
jobs: | |
releaser_tests: | |
name: releaser tests | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up Ruby | |
uses: ruby/setup-ruby@v1 | |
with: | |
ruby-version: ruby | |
- name: Bundle install | |
run: bundle install | |
working-directory: tools/releaser | |
- run: bundle exec rake | |
working-directory: tools/releaser |