devdocs/.github/workflows/test.yml

19 lines
455 B
YAML
Raw Normal View History

2021-06-09 07:30:32 +02:00
name: Ruby tests
on:
pull_request:
branches:
- main
jobs:
test:
2024-01-10 11:10:54 +01:00
runs-on: ubuntu-latest
2021-06-09 07:30:32 +02:00
steps:
2024-10-08 00:00:28 +02:00
- uses: actions/checkout@eef61447b9ff4aafe5dcd4e0bbf5d482be7e7871 # v4.2.1
2021-06-09 07:30:32 +02:00
- name: Set up Ruby
uses: ruby/setup-ruby@7bae1d00b5db9166f4f0fc47985a3a5702cb58f0 # v1.197.0
2021-06-09 07:30:32 +02:00
with:
bundler-cache: true # runs 'bundle install' and caches installed gems automatically
- name: Run tests
run: bundle exec rake