Use __dir__ instead of File.dirname(__FILE__) in i18n.rb #23
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: Run tests | |
on: | |
- push | |
- pull_request | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
defaults: | |
run: | |
working-directory: hammer-cli-foreman-webhooks | |
strategy: | |
fail-fast: false | |
matrix: | |
ruby: | |
- 2.7 | |
- 3.0 | |
- 3.1 | |
steps: | |
- name: Get hammer-cli | |
uses: actions/checkout@v2 | |
with: | |
repository: theforeman/hammer-cli | |
ref: master | |
path: hammer-cli | |
- name: Get hammer-cli-foreman | |
uses: actions/checkout@v2 | |
with: | |
repository: theforeman/hammer-cli-foreman | |
ref: master | |
path: hammer-cli-foreman | |
- name: Get hammer-cli-foreman-webhooks | |
uses: actions/checkout@v2 | |
with: | |
path: hammer-cli-foreman-webhooks | |
- name: Configure local gem dependencies | |
run: | | |
echo "gemspec path: '../hammer-cli', name: 'hammer_cli'" > Gemfile.local.rb | |
echo "gemspec path: '../hammer-cli-foreman', name: 'hammer_cli_foreman'" >> Gemfile.local.rb | |
- name: Set up Ruby | |
uses: ruby/setup-ruby@v1 | |
with: | |
ruby-version: ${{ matrix.ruby }} | |
bundler-cache: true | |
working-directory: hammer-cli-foreman-webhooks | |
- name: Run tests | |
run: | | |
bundle exec rake test |