Skip to content

Update one_gadget requirement from >= 1.6.2, < 1.9.0 to >= 1.6.2, < 1.10.0 #77

Update one_gadget requirement from >= 1.6.2, < 1.9.0 to >= 1.6.2, < 1.10.0

Update one_gadget requirement from >= 1.6.2, < 1.9.0 to >= 1.6.2, < 1.10.0 #77

Workflow file for this run

name: build
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
test:
runs-on: ${{ matrix.os }}-latest
strategy:
matrix:
os: [ubuntu, macos]
ruby-version: ['2.6', '2.7', head]
steps:
- uses: actions/checkout@v2
- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby-version }}
bundler-cache: true
- name: Install packages
run: .github/workflows/install.sh ${{ runner.os }}
- name: Run tests
run: bundle exec rake
env:
LD_LIBRARY_PATH: ./keystone/build/llvm/lib
DYLD_LIBRARY_PATH: /usr/local/opt/capstone/lib
- name: Publish code coverage to codeclimate
if: ${{ success() && runner.os == 'Linux' && env.CC_TEST_REPORTER_ID }}
uses: paambaati/codeclimate-action@v2.7.5
env:
CC_TEST_REPORTER_ID: ${{ secrets.CC_TEST_REPORTER_ID }}