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

134 lines
3.8 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:
instances: [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: Setup split tests
uses: ./.github/actions/ci-setup-split-tests
with:
results_path: tmp/*.junit.xml
- name: Run tests
2021-10-26 14:01:56 +02:00
run: |
SPEC_FILES=$(./split_tests -glob='spec/**/*_spec.rb' -exclude-glob='spec/system/**' -split-index=${{ strategy.job-index }} -split-total=${{ strategy.job-total }} -junit -junit-path=tmp/*.junit.xml)
echo "Running tests for bin/rspec $SPEC_FILES"
bin/rspec $SPEC_FILES --format progress --format RspecJunitFormatter --out tmp/rspec_${{ github.job }}_${{ strategy.job-index }}.junit.xml
- name: Upload test results for this instance
uses: actions/upload-artifact@v2
with:
name: test-reports
path: tmp/rspec_${{ github.job }}_${{ strategy.job-index }}.junit.xml
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:
instances: [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: Setup split tests
uses: ./.github/actions/ci-setup-split-tests
with:
results_path: tmp/*.junit.xml
2021-02-17 19:06:55 +01:00
- name: Run tests
run: |
SPEC_FILES=$(./split_tests -glob='spec/system/**/*_spec.rb' -split-index=${{ strategy.job-index }} -split-total=${{ strategy.job-total }} -junit -junit-path=tmp/*.junit.xml)
echo "Running tests for bin/rspec $SPEC_FILES"
bin/rspec $SPEC_FILES --format progress --format RspecJunitFormatter --out tmp/rspec_${{ github.job }}_${{ strategy.job-index }}.junit.xml
- name: Upload test results for this instance
uses: actions/upload-artifact@v2
with:
name: test-reports
path: tmp/rspec_${{ github.job }}_${{ strategy.job-index }}.junit.xml
save_test_reports:
name: Save test reports
needs: [unit_tests, system_tests]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Collect test results from all instances
uses: actions/download-artifact@v2
with:
name: test-reports
path: tmp
- name: Save test results and timing data, to better split future tests
uses: ./.github/actions/ci-save-split-tests
with:
results_path: tmp/*.junit.xml