forked from kwerle/ruby_language_server
-
Notifications
You must be signed in to change notification settings - Fork 0
22 lines (19 loc) · 680 Bytes
/
test.yml
File metadata and controls
22 lines (19 loc) · 680 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
# This workflow uses actions that are not certified by GitHub.
# They are provided by a third-party and are governed by
# separate terms of service, privacy policy, and support
# documentation.
# This workflow will download a prebuilt Ruby version, install dependencies and run tests with Rake
# For more information see: https://github.com/marketplace/actions/setup-ruby-jruby-and-truffleruby
name: Ruby
on:
push:
schedule:
# * is a special character in YAML so you have to quote this string
- cron: '13 13 * * *' # really? No @daily?
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Run tests
run: make test