update aca_entities sha ref #405
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: quality-workbench | |
on: push | |
concurrency: | |
group: ${{ github.ref }} | |
cancel-in-progress: true | |
env: | |
POLYPRESS_DB_URL: 'localhost:27017' | |
jobs: | |
rubocop: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: ruby/setup-ruby@v1 | |
- uses: actions/cache@v2 | |
with: | |
path: vendor/bundle | |
key: v2-${{ runner.os }}-gems-${{ hashFiles('**/Gemfile.lock') }}-${{ hashFiles('**/Gemfile') }} | |
restore-keys: | | |
v2-${{ runner.os }}-gems-${{ hashFiles('**/Gemfile.lock') }}-${{ hashFiles('**/Gemfile') }} | |
- name: bundle install | |
run: | | |
bundle config path vendor/bundle | |
bundle install | |
- run: bundle exec rubocop | |
rspec: | |
runs-on: ubuntu-latest | |
services: | |
mongo: | |
image: mongo:4.2 | |
ports: | |
- 27017:27017 | |
options: >- | |
--name "mongo" | |
--health-cmd mongo | |
--health-interval 10s | |
--health-timeout 5s | |
--health-retries 5 | |
rabbitmq: | |
image: rabbitmq:latest | |
ports: | |
- 5672:5672 | |
- 15672:15672 | |
options: >- | |
--name "rabbitmq" | |
--health-cmd "rabbitmqctl node_health_check" | |
--health-interval 10s | |
--health-timeout 5s | |
--health-retries 5 | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: ruby/setup-ruby@v1 | |
- run: | | |
docker exec rabbitmq rabbitmqctl add_vhost / | |
docker exec rabbitmq rabbitmqctl add_vhost event_source | |
docker exec rabbitmq rabbitmqctl set_permissions -p event_source guest ".*" ".*" ".*" | |
- uses: actions/cache@v2 | |
with: | |
path: vendor/bundle | |
key: v2-${{ runner.os }}-gems-${{ hashFiles('**/Gemfile.lock') }}-${{ hashFiles('**/Gemfile') }} | |
restore-keys: | | |
v2-${{ runner.os }}-gems-${{ hashFiles('**/Gemfile.lock') }}-${{ hashFiles('**/Gemfile') }} | |
- name: bundle install | |
run: | | |
bundle config path vendor/bundle | |
bundle install | |
- run: bundle exec rspec |