Bump sqlite3 from 1.7.3 to 2.0.1 #361
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: | |
branches: | |
- main | |
pull_request: | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
ruby: ["3.0", "3.1", "3.2"] | |
gemfile: | |
[ | |
"Gemfile", | |
"gemfiles/rails_7_0.gemfile", | |
"gemfiles/rails_6_1.gemfile", | |
] | |
env: | |
BUNDLE_GEMFILE: ${{ matrix.gemfile }} | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: ruby/setup-ruby@v1 | |
with: | |
ruby-version: ${{ matrix.ruby }} | |
- name: install dependencies | |
run: bundle install --jobs 3 --retry 3 | |
- name: migration | |
run: | | |
bin/rails db:create RAILS_ENV=test | |
bin/rails db:migrate RAILS_ENV=test | |
- name: lint | |
run: | | |
bundle exec standardrb | |
bundle exec brakeman | |
- name: test | |
run: bin/rails test |