TheAlgorithms-Ruby/.github/workflows/test.yml
vzvu3k6k 6f65796491 Migrate to ruby/setup-ruby for Ruby 3.0
actions/setup-ruby has not yet supported Ruby 3.0.
2021-01-12 02:07:42 +09:00

12 lines
254 B
YAML

name: test
on: [push, pull_request]
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@master
- uses: ruby/setup-ruby@master
with:
ruby-version: '3.0'
- name: Run tests
run: rake test