Schema v1 to Aardvark migrator #141
Workflow file for this run
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] | |
jobs: | |
rubocop: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Set up Ruby and install dependencies | |
uses: ruby/setup-ruby@v1 | |
with: | |
ruby-version: 2.7 | |
bundler-cache: true | |
- name: Run linter | |
run: bundle exec rubocop | |
test: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
ruby: [2.7, '3.0', 3.1] | |
faraday_version: [''] # Defaults to whatever's the most recent version. | |
include: | |
- ruby: 2.7 | |
faraday_version: '~> 1.0' | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Set up Ruby and install dependencies | |
uses: ruby/setup-ruby@v1 | |
with: | |
ruby-version: ${{ matrix.ruby }} | |
bundler-cache: true | |
env: | |
FARADAY_VERSION: ${{ matrix.faraday_version }} | |
- name: Run tests | |
run: bundle exec rake spec | |
env: | |
FARADAY_VERSION: ${{ matrix.faraday_version }} | |
- name: Upload coverage artifacts | |
uses: actions/upload-artifact@v2 | |
with: | |
name: coverage | |
path: coverage/ |