Skip to content

Release BCDice 3.14.0 #1959

Release BCDice 3.14.0

Release BCDice 3.14.0 #1959

Workflow file for this run

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'