show percentage of voting completed #2164
Workflow file for this run
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
# .github/workflows/ci.yml | |
env: | |
RUBY_VERSION: 3.2.2 | |
TEST_REDIS_PASS: testpass | |
name: CI | |
on: [push, pull_request] | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
services: | |
db: | |
image: postgres:11 | |
env: | |
POSTGRES_DB: postgres | |
POSTGRES_PASSWORD: postgres | |
POSTGRES_USER: postgres | |
ports: | |
- 5432:5432 | |
# Set health checks to wait until postgres has started | |
options: >- | |
--health-cmd pg_isready | |
--health-interval 10s | |
--health-timeout 5s | |
--health-retries 5 | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Setup Redis | |
uses: getong/redis-action@v1 | |
with: | |
redis password: ${{ env.TEST_REDIS_PASS }} | |
- name: Setup Ruby | |
uses: ruby/setup-ruby@v1 | |
with: | |
ruby-version: ${{ env.RUBY_VERSION }} | |
- name: Update Ubuntu Repos | |
run: sudo apt-get update | |
- name: Install deps | |
run: sudo apt-get install libtag1-dev sox libsox-fmt-mp3 imagemagick | |
- name: Build and run tests | |
env: | |
DATABASE_URL: postgres://postgres:postgres@localhost:5432/stream_pusher_test | |
PGHOST: localhost | |
PGUSER: postgres | |
REDIS_URL: redis://localhost:6379/0 | |
REDIS_HOST: localhost | |
REDIS_PASSWORD: ${{ env.TEST_REDIS_PASS }} | |
RAILS_ENV: test | |
RAILS_MASTER_KEY: ${{ secrets.RAILS_MASTER_KEY }} | |
run: | | |
cp config/database.example.yml config/database.yml | |
cp .env.sample .env | |
gem install bundler | |
bundle install --jobs 4 --retry 3 | |
bundle exec rails db:setup RAILS_ENV=test | |
bundle exec rspec |