CI: Add Dependabot configuration #57
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: Tests | |
on: | |
push: | |
branches: [ main ] | |
pull_request: ~ | |
# Allow job to be triggered manually. | |
workflow_dispatch: | |
# Cancel in-progress jobs when pushing to the same branch. | |
concurrency: | |
cancel-in-progress: true | |
group: ${{ github.workflow }}-${{ github.ref }} | |
jobs: | |
tests: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
os: [ ubuntu-latest, macos-latest ] # , windows-latest ] | |
ruby-version: [ "2.4", "2.5", "2.6", "2.7", "3.0", "3.1", "3.2" ] | |
name: Ruby ${{ matrix.ruby-version }} on OS ${{ matrix.os }} | |
steps: | |
- name: Acquire sources | |
uses: actions/checkout@v3 | |
- name: Setup Ruby | |
uses: ruby/setup-ruby@v1 | |
with: | |
ruby-version: ${{ matrix.ruby-version }} | |
architecture: x64 | |
- name: Caching of CrateDB | |
uses: actions/cache@v3 | |
id: cache-cratedb | |
with: | |
path: parts | |
key: cratedb-os=${{ matrix.os }}-${{ hashFiles('spec/bootstrap.rb') }} | |
- name: Caching of Ruby gems | |
uses: actions/cache@v3 | |
id: cache-gems | |
with: | |
path: vendor/bundle | |
key: gems-os=${{ matrix.os }}-ruby=${{ matrix.ruby-version }}-${{ hashFiles('**/Gemfile.lock') }} | |
- name: Bundle install | |
run: | | |
gem install bundler --version '< 2.4' | |
bundle config path vendor/bundle | |
bundle install | |
- name: Install CrateDB | |
if: steps.cache-cratedb.outputs.cache-hit != 'true' | |
run: bundle exec ruby spec/bootstrap.rb | |
- name: Run tests | |
run: bundle exec rspec | |
- name: Run rubocop | |
run: bundle exec rubocop |