[RuneQuest:Roleplaying in Glorantha] 成功段階の文言を日本語版に合わせて変更 #2028
Workflow file for this run
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: Test | |
on: [push, pull_request] | |
jobs: | |
test: | |
strategy: | |
fail-fast: false | |
matrix: | |
ruby: ["2.7", "3.0", "3.1", "3.2", "3.3"] | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: ruby/setup-ruby@v1 | |
with: | |
ruby-version: ${{ matrix.ruby }} | |
bundler-cache: true | |
- run: bundle exec rake test | |
env: | |
ENABLE_COBERTURA: true | |
- name: Upload to Codecov | |
uses: codecov/codecov-action@v3 | |
with: | |
file: coverage/coverage.xml | |
if: matrix.ruby == '3.3' |