Skip to content

Upgrade Rails and Ruby #27

Upgrade Rails and Ruby

Upgrade Rails and Ruby #27

Workflow file for this run

name: Ruby on Rails CI
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
build:
runs-on: ubuntu-latest
services:
postgres:
image: postgres:latest
env:
POSTGRES_DB: vigilion_scanner_test
POSTGRES_USER: postgres
POSTGRES_PASSWORD: password
ports:
- 5432:5432
options: >-
--health-cmd pg_isready
--health-interval 10s
--health-timeout 5s
--health-retries 5
clamav:
image: clamav/clamav:stable
ports:
- 3310
steps:
- uses: actions/checkout@v2
- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: '3.0.7' # Adjust the Ruby version to match your project's version
- name: Install ClamAV
run: >
sudo apt-get install -y clamav clamav-daemon
&& sudo su -c 'echo TCPSocket 3310 >> /etc/clamav/clamd.conf'
&& sudo mkdir /var/run/clamav
&& sudo chown clamav:clamav /var/run/clamav
- name: Refresh ClamAV
run: sudo systemctl stop clamav-freshclam.service && sudo freshclam
- name: ClamAV Status
run: sudo systemctl restart clamav-daemon && sleep 30 && sudo systemctl status clamav-daemon
- name: Install dependencies
run: |
gem install bundler
bundle install --jobs 4 --retry 3
- name: Setup Database
env:
RAILS_ENV: test
DATABASE_URL: postgres://postgres:password@localhost:5432/vigilion_scanner_test
run: |
bin/rails db:create
bin/rails db:schema:load
- name: Run tests
env:
RAILS_ENV: test
DATABASE_URL: postgres://postgres:password@localhost:5432/vigilion_scanner_test
CLAMD_USE_TCP: True
CLAMD_TCP_SOCKET: ${{ job.services.clamav.ports[3310] }}
run: bundle exec rspec