mirror of
https://github.com/TheAlgorithms/Ruby
synced 2024-12-28 22:24:14 +01:00
6f65796491
actions/setup-ruby has not yet supported Ruby 3.0.
12 lines
254 B
YAML
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
|