mirror of
https://github.com/TheAlgorithms/Ruby
synced 2024-11-16 19:50:00 +01:00
Run tests on CI
This commit is contained in:
parent
f3dc923ccb
commit
99b940ec8e
1 changed files with 12 additions and 0 deletions
12
.github/workflows/test.yml
vendored
Normal file
12
.github/workflows/test.yml
vendored
Normal file
|
@ -0,0 +1,12 @@
|
|||
name: test
|
||||
on: [push, pull_request]
|
||||
jobs:
|
||||
test:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/checkout@master
|
||||
- uses: actions/setup-ruby@master
|
||||
with:
|
||||
ruby-version: '2.7'
|
||||
- name: Run tests
|
||||
run: rake test
|
Loading…
Reference in a new issue