mirror of
https://github.com/edgecase/ruby_koans.git
synced 2026-04-13 06:43:20 -04:00
16 lines
289 B
YAML
16 lines
289 B
YAML
name: CI
|
|
on: [push]
|
|
jobs:
|
|
test:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout code
|
|
uses: actions/checkout@v3
|
|
|
|
- name: Install Ruby!
|
|
uses: ruby/setup-ruby@v1
|
|
with:
|
|
ruby-version: "3.2.2"
|
|
|
|
- name: run tests
|
|
run: rake test |