This repository has been archived by the owner on Nov 28, 2024. It is now read-only.
Bump sqlite3 from 1.6.7 to 1.6.9 #409
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/mongodb-github-action@1.7.0 | |
with: | |
mongodb-version: 4.2 | |
- name: Install dependencies | |
run: bundle install | |
- name: Run the tests | |
run: bundle exec rake |