mirror of
https://github.com/microsoft/regorus.git
synced 2026-08-05 02:16:11 +00:00
- c, cpp - csharp - ffi - go - Java - Python - WASM `arc` feature is turned on for all bindings Use pretty string instead of colored string. Signed-off-by: Anand Krishnamoorthi <anakrish@microsoft.com>
32 lines
742 B
YAML
32 lines
742 B
YAML
name: bindings/ruby
|
|
|
|
on:
|
|
push:
|
|
branches: [ "main" ]
|
|
pull_request:
|
|
branches: [ "main" ]
|
|
|
|
jobs:
|
|
test:
|
|
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@7ca44a16e287e5ff7dd72ab53f4bd41cbf34a571 #v1.26
|
|
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
|
|
cargo clippy --all-targets --no-deps -- -Dwarnings
|
|
bundle exec rake
|