From 0c3b672b9e068b054f372f3d72afbf1eb4fb7a63 Mon Sep 17 00:00:00 2001 From: Jackblanket847 <151718823+Jackblanket847@users.noreply.github.com> Date: Mon, 27 Nov 2023 13:56:23 -0500 Subject: [PATCH] ruby.yml --- .github/workflows/ruby.yml | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 .github/workflows/ruby.yml diff --git a/.github/workflows/ruby.yml b/.github/workflows/ruby.yml new file mode 100644 index 000000000..4034c9dc8 --- /dev/null +++ b/.github/workflows/ruby.yml @@ -0,0 +1,18 @@ +name: My workflow +on: [push, pull_request] +jobs: + test: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + - uses: ruby/setup-ruby@v1 + with: + ruby-version: '3.2' # Not needed with a .ruby-version file + bundler-cache: true # runs 'bundle install' and caches installed gems automatically + - run: bundle exec rake# This workflow uses actions that are not certified by GitHub. +# They are provided by a third-party and are governed by +# separate terms of service, privacy policy, and support +# documentation. +# This workflow will download a prebuilt Ruby version, install dependencies and run tests with Rake +# For more information see: https://github.com/marketplace/actions/setup-ruby-jruby-and-truffleruby +