Bump sqlite3 from 1.6.7 to 1.6.9 #408
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, pull_request] | |
env: | |
PUSHER_APP_ID: abc123 | |
PUSHER_KEY: abc123 | |
PUSHER_SECRET: abc123 | |
PUSHER_CLUSTER: eu | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Install cURL Headers | |
run: sudo apt-get install libcurl4-openssl-dev | |
- uses: ruby/setup-ruby@v1 | |
with: | |
bundler-cache: true | |
ruby-version: 2.6 | |
- name: Start MongoDB | |
uses: supercharge/[email protected] | |
with: | |
mongodb-version: 4.2 | |
- name: Install dependencies | |
run: bundle install | |
- name: Run the tests | |
run: bundle exec rake |