Does CI work with appraisal test #1
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: Appraisal CI Tests | |
on: | |
push: | |
branches: "main" | |
pull_request: | |
branches: "*" | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- run: | | |
bundle install | |
bundle exec appraisal install | |
bundle exec appraisal rake db:create | |
bundle exec appraisal rake db:migrate | |
- name: "Run appraisal rspec" | |
run: bundle exec appraisal rspec |