mirror of
https://github.com/ticky/wayback-classic.git
synced 2025-12-23 22:17:56 -05:00
25 lines
413 B
YAML
25 lines
413 B
YAML
name: Ruby
|
|
|
|
on:
|
|
push:
|
|
branches: [ develop ]
|
|
pull_request:
|
|
branches: [ develop ]
|
|
|
|
jobs:
|
|
test:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v2
|
|
|
|
- name: Set up Ruby
|
|
uses: ruby/setup-ruby@v1
|
|
with:
|
|
bundler-cache: true
|
|
working-directory: ./tests
|
|
|
|
- name: Run tests
|
|
run: bundle exec rake
|
|
working-directory: ./tests
|