[MonotoneMuseum:Korean]モノトーンミュージアムRPG改訂版の表追加 Korean translate #2019
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' |