Skip to content

Bump sidekiq from 7.1.4 to 7.2.1 #870

Bump sidekiq from 7.1.4 to 7.2.1

Bump sidekiq from 7.1.4 to 7.2.1 #870

Workflow file for this run

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 }}