From 495e91c75ad1636ce0c6ac1f082a4e29df74d090 Mon Sep 17 00:00:00 2001 From: thedavemarshall Date: Mon, 20 May 2024 17:53:36 -0500 Subject: [PATCH] Add test-ruby CI for github actions (#244) https://github.com/oxidize-rb/actions/blob/main/setup-ruby-and-rust/readme.md --- .github/workflows/test-ruby.yml | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) create mode 100644 .github/workflows/test-ruby.yml diff --git a/.github/workflows/test-ruby.yml b/.github/workflows/test-ruby.yml new file mode 100644 index 0000000..16acf74 --- /dev/null +++ b/.github/workflows/test-ruby.yml @@ -0,0 +1,30 @@ +name: test-ruby + +on: + push: + branches: [ "main" ] + pull_request: + branches: [ "main" ] + +jobs: + setup: + runs-on: ubuntu-latest + steps: + - name: Checkout repository + uses: actions/checkout@v4 + with: + fetch-depth: 0 + + - name: Setup Ruby and Rust + uses: oxidize-rb/actions/setup-ruby-and-rust@v1 + with: + ruby-version: "3.3.1" + rustup-toolchain: "stable" + bundler-cache: true + cargo-cache: true + working-directory: "bindings/ruby" + + - name: Run ruby tests + run: | + cd bindings/ruby + bundle exec rake