Merge pull request #519 from anakrish/opa-rvm-3 #90
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: bindings/ruby | |
| on: | |
| push: | |
| branches: [ "main" ] | |
| pull_request: | |
| branches: [ "main" ] | |
| jobs: | |
| test: | |
| if: false # temporarily disabled | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@08eba0b27e820071cde6df949e0beb9ba4906955 # v4 | |
| with: | |
| fetch-depth: 0 | |
| - name: Setup Ruby and Rust | |
| uses: oxidize-rb/actions/setup-ruby-and-rust@7ca44a16e287e5ff7dd72ab53f4bd41cbf34a571 #v1.26 | |
| with: | |
| bundler: 2.6.5 | |
| rubygems: 3.6.5 | |
| ruby-version: "3.4.2" | |
| rustup-toolchain: "stable" | |
| bundler-cache: true | |
| cargo-cache: true | |
| working-directory: "bindings/ruby" | |
| - name: Run ruby tests | |
| run: | | |
| cd bindings/ruby | |
| gem install bundler | |
| bundle install | |
| cargo clippy --all-targets --no-deps -- -Dwarnings | |
| bundle exec rake |