TheAlgorithms-Ruby/.github/workflows/test.yml
vzvu3k6k b6677b2cdd chore: specify GitHub action versions
Co-authored-by: David Leal <halfpacho@gmail.com>
2023-06-22 03:38:34 +09:00

12 lines
257 B
YAML

name: Build/test code
on: [push, pull_request]
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: ruby/setup-ruby@v1
with:
ruby-version: '3.2'
- name: Run tests
run: rake test