mirror of
https://github.com/freeCodeCamp/devdocs.git
synced 2026-03-31 15:29:41 +00:00
19 lines
455 B
YAML
19 lines
455 B
YAML
name: Ruby tests
|
|
|
|
on:
|
|
pull_request:
|
|
branches:
|
|
- main
|
|
|
|
jobs:
|
|
test:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 # v4.3.1
|
|
- name: Set up Ruby
|
|
uses: ruby/setup-ruby@09a7688d3b55cf0e976497ff046b70949eeaccfd # v1.288.0
|
|
with:
|
|
bundler-cache: true # runs 'bundle install' and caches installed gems automatically
|
|
- name: Run tests
|
|
run: bundle exec rake
|