mirror of
https://github.com/TheAlgorithms/Ruby
synced 2025-02-04 08:46:13 +01:00
16b1f5a09e
This reverts commit275bed9a78
, reversing changes made to14149d1eaf
. This action failed for some reason. https://github.com/TheAlgorithms/Ruby/actions/runs/5337370931/jobs/9673337632 I'll revert this merge commit temporarily until it is fixed.
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.2'
|
|
- name: Run tests
|
|
run: rake test
|