92 lines
2.2 KiB
YAML
92 lines
2.2 KiB
YAML
name: Continuous Integration
|
|
on:
|
|
push:
|
|
branches: 'main'
|
|
pull_request:
|
|
branches: 'main'
|
|
|
|
jobs:
|
|
linters:
|
|
name: Linters
|
|
runs-on: ubuntu-latest
|
|
services:
|
|
postgres:
|
|
image: postgres:12
|
|
env:
|
|
POSTGRES_USER: tps_test
|
|
POSTGRES_DB: tps_test
|
|
POSTGRES_PASSWORD: tps_test
|
|
ports: [ "5432:5432" ]
|
|
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
|
|
- name: Setup the app code and dependancies
|
|
uses: ./.github/actions/ci-setup-rails
|
|
|
|
- name: Run linters
|
|
run: |
|
|
bundle exec rake lint
|
|
bundle exec rake zeitwerk:check
|
|
|
|
unit_tests:
|
|
name: Unit tests
|
|
runs-on: ubuntu-latest
|
|
services:
|
|
postgres:
|
|
image: postgres:12
|
|
env:
|
|
POSTGRES_USER: tps_test
|
|
POSTGRES_DB: tps_test
|
|
POSTGRES_PASSWORD: tps_test
|
|
ports: ["5432:5432"]
|
|
|
|
strategy:
|
|
matrix:
|
|
split_index: [0, 1, 2, 3, 4, 5]
|
|
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
|
|
- name: Setup the app runtime and dependencies
|
|
uses: ./.github/actions/ci-setup-rails
|
|
|
|
- name: Pre-compile assets
|
|
uses: ./.github/actions/ci-setup-assets
|
|
|
|
- name: Run tests
|
|
run: |
|
|
SPEC_FILES=$(./split_tests -line-count -glob='spec/**/*_spec.rb' -exclude-glob='spec/system/**' -split-index=${{ matrix.split_index }} -split-total=6)
|
|
echo "Running tests for bin/rspec $SPEC_FILES"
|
|
bin/rspec $SPEC_FILES
|
|
|
|
system_tests:
|
|
name: System tests
|
|
runs-on: ubuntu-latest
|
|
services:
|
|
postgres:
|
|
image: postgres:12
|
|
env:
|
|
POSTGRES_USER: tps_test
|
|
POSTGRES_DB: tps_test
|
|
POSTGRES_PASSWORD: tps_test
|
|
ports: ["5432:5432"]
|
|
|
|
strategy:
|
|
matrix:
|
|
split_index: [0, 1]
|
|
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
|
|
- name: Setup the app runtime and dependencies
|
|
uses: ./.github/actions/ci-setup-rails
|
|
|
|
- name: Pre-compile assets
|
|
uses: ./.github/actions/ci-setup-assets
|
|
|
|
- name: Run tests
|
|
run: |
|
|
SPEC_FILES=$(./split_tests -line-count -glob='spec/system/**/*_spec.rb' -split-index=${{ matrix.split_index }} -split-total=2)
|
|
echo "Running tests for bin/rspec $SPEC_FILES"
|
|
bin/rspec $SPEC_FILES
|