Upgrade net-imap to 0.6.4 #375
This file contains hidden or 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: Ruby | |
| on: | |
| push: | |
| branches: [ master ] | |
| pull_request: | |
| branches: [ master ] | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| services: | |
| postgres: | |
| image: postgres:11 | |
| ports: ['5432:5432'] | |
| env: | |
| POSTGRES_USER: postgres | |
| POSTGRES_PASSWORD: postgres | |
| BLOG_DATABASE_USERNAME: postgres | |
| BLOG_DATABASE_PASSWORD: postgres | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Set up Ruby used in .ruby-version or .tool-versions | |
| uses: ruby/setup-ruby@v1 | |
| - name: Build and test with Rake | |
| env: | |
| RAILS_ENV: test | |
| BLOG_DATABASE_USERNAME: postgres | |
| BLOG_DATABASE_PASSWORD: postgres | |
| run: | | |
| sudo apt-get -yqq install libpq-dev | |
| gem install bundler | |
| bundle install --jobs 4 --retry 3 | |
| bundle exec rake db:create db:migrate | |
| bundle exec rake |