ads rbs file #14
This file contains 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: ci | |
on: | |
push: | |
branches: [master] | |
paths: | |
- 'lib/**' | |
- 'spec/**/*_spec.rb' | |
pull_request: | |
branches: [master] | |
paths: | |
- 'lib/**' | |
- 'spec/**/*_spec.rb' | |
jobs: | |
test: | |
strategy: | |
matrix: | |
ruby_version: | |
- '2.6' | |
- '3.0' | |
- '3.2' | |
runs-on: ubuntu-22.04 | |
container: ruby:${{ matrix.ruby_version }}-slim | |
steps: | |
- name: checkout | |
uses: actions/checkout@v3 | |
- name: install some pre-requisite packages | |
run: apt-get update && apt-get install -y gcc libgpgme-dev make pkg-config | |
- name: bundler install | |
run: bundle config build.gpgme --use-system-libraries && bundle install --retry=3 | |
- name: run tests | |
run: bundle exec rake grpc unit system |