Merge pull request #41 from SwitchDreams/upgrade-versions #58
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 | |
env: | |
RUBY_VERSION: 3.3.4 | |
on: | |
pull_request: | |
branches: | |
- '**' | |
push: | |
branches: | |
- main | |
jobs: | |
rubocop: | |
name: Rubocop | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: ruby/setup-ruby@v1 | |
with: | |
ruby-version: ${{ env.RUBY_VERSION }} | |
- name: Install gems | |
run: bundle install | |
- name: Check code | |
run: rubocop | |
rspec: | |
name: RSpec | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: ruby/setup-ruby@v1 | |
with: | |
ruby-version: ${{ env.RUBY_VERSION }} | |
- name: Install gems | |
run: bundle install | |
- name: Setup database | |
working-directory: ./spec/dummy | |
run: bundle exec rails db:setup | |
- name: Run tests | |
run: bundle exec rspec | |