Skip to content

change version to 0.2.0 #10

change version to 0.2.0

change version to 0.2.0 #10

Workflow file for this run

name: Test
on:
push:
branches: [ 'main' ]
pull_request:
branches: [ 'main' ]
permissions:
contents: read
jobs:
ruby_workflow_checkout:
runs-on: ubuntu-latest
strategy:
matrix:
ruby-version: ['3.3']
steps:
- uses: actions/checkout@v4
- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby-version }}
bundler-cache: true
- name: Run tests
run: bundle exec rake test
- name: Codecov coverage
uses: codecov/[email protected]
with:
token: ${{ secrets.CODECOV_TOKEN }}