demarches-normaliennes/.github/workflows/ci.yml

93 lines
2.2 KiB
YAML
Raw Normal View History

2021-02-17 19:06:55 +01:00
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" ]
2021-02-17 19:06:55 +01:00
steps:
- uses: actions/checkout@v2
- name: Setup the app code and dependancies
uses: ./.github/actions/ci-setup-rails
2021-02-17 19:06:55 +01:00
- name: Run linters
run: |
bundle exec rake lint
bundle exec rake zeitwerk:check
2021-02-17 19:06:55 +01:00
unit_tests:
name: Unit tests
2021-02-17 19:06:55 +01:00
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]
2021-02-17 19:06:55 +01:00
steps:
- uses: actions/checkout@v2
2021-02-17 19:06:55 +01:00
- name: Setup the app runtime and dependencies
uses: ./.github/actions/ci-setup-rails
2021-02-17 19:06:55 +01:00
- name: Pre-compile assets
uses: ./.github/actions/ci-setup-assets
- name: Run tests
2021-10-26 14:01:56 +02:00
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
2021-10-26 14:01:56 +02:00
system_tests:
name: System tests
runs-on: ubuntu-latest
services:
postgres:
image: postgres:12
2021-02-17 19:06:55 +01:00
env:
POSTGRES_USER: tps_test
POSTGRES_DB: tps_test
POSTGRES_PASSWORD: tps_test
ports: ["5432:5432"]
2021-02-17 19:06:55 +01:00
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
2021-02-17 19:06:55 +01:00
- 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