mirror of
https://github.com/colby-swandale/waterfoul
synced 2024-12-26 21:58:54 +01:00
Add github actions workflow
This commit is contained in:
parent
4dc378276e
commit
0109c3bcd6
1 changed files with 19 additions and 0 deletions
19
.github/workflows/ruby.yml
vendored
Normal file
19
.github/workflows/ruby.yml
vendored
Normal file
|
@ -0,0 +1,19 @@
|
|||
name: Test
|
||||
|
||||
on:
|
||||
push:
|
||||
branches: [ master ]
|
||||
pull_request:
|
||||
branches: [ master ]
|
||||
|
||||
jobs:
|
||||
test:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v2
|
||||
- name: Set up Ruby
|
||||
uses: ruby/setup-ruby
|
||||
- name: Install dependencies
|
||||
run: bundle install
|
||||
- name: Run tests
|
||||
run: bundle exec rake
|
Loading…
Reference in a new issue