Bump rails from 7.0.8 to 7.0.8.1 #887
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: Tests | |
on: | |
pull_request: | |
branches: | |
- "*" | |
push: | |
branches: | |
- main | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
services: | |
postgres: | |
image: postgres:latest | |
env: | |
POSTGRES_USER: postgres | |
POSTGRES_PASSWORD: password | |
ports: ["5432:5432"] | |
redis: | |
image: redis | |
ports: ["6379:6379"] | |
options: --entrypoint redis-server | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Setup Ruby | |
uses: ruby/setup-ruby@v1 | |
with: | |
bundler: default | |
bundler-cache: true | |
- name: Setup Node | |
uses: actions/setup-node@v3 | |
with: | |
node-version: "18" | |
cache: yarn | |
- name: Install dependencies | |
run: | | |
sudo apt-get update | |
sudo apt-get install -y -qq libvips | |
yarn install --frozen-lockfile | |
- name: Ruby Lint Check | |
run: bundle exec rubocop | |
- name: JavaScript Lint Check | |
run: yarn run eslint | |
- name: Run tests | |
env: | |
DATABASE_URL: postgres://postgres:password@localhost:5432/test | |
REDIS_URL: redis://localhost:6379/0 | |
RAILS_ENV: test | |
PG_USER: postgres | |
run: | | |
bin/rails test:prepare | |
bin/rails db:test:prepare | |
bundle exec rspec | |
- name: Upload coverage reports to Codecov | |
uses: codecov/codecov-action@v3 | |
env: | |
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }} |