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

91 lines
2.1 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
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Setup Ruby
uses: ruby/setup-ruby@v1
with:
bundler-cache: true
- name: Setup Node
uses: actions/setup-node@v2
with:
node-version: '14'
cache: yarn
- name: Install node modules
run: yarn install --frozen-lockfile
2021-02-17 19:06:55 +01:00
- name: Run linters
run: |
bundle exec rake lint
tests:
name: 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:
pattern:
- bin/rake zeitwerk:check
- bin/rspec spec/controllers/*_spec.rb
- bin/rspec spec/controllers/[a-l]**/*_spec.rb
- bin/rspec spec/controllers/[m-z]**/*_spec.rb
- bin/rspec spec/system
- bin/rspec spec/helpers spec/lib spec/middlewares
- bin/rspec spec/mailers spec/jobs spec/policies
- bin/rspec spec/models
- bin/rspec spec/serializers spec/services
- bin/rspec spec/views
2021-02-17 19:06:55 +01:00
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Setup Ruby
uses: ruby/setup-ruby@v1
with:
bundler-cache: true
- name: Setup Node
uses: actions/setup-node@v2
with:
node-version: '14'
cache: 'yarn'
- name: Install Node modules
run: yarn install --frozen-lockfile
2021-02-17 19:06:55 +01:00
- name: Setup test database
env:
RAILS_ENV: test
DATABASE_URL: "postgres://tps_test@localhost:5432/tps_test"
run: |
2021-10-26 13:27:26 +02:00
bin/rails db:create db:schema:load db:migrate
2021-02-17 19:06:55 +01:00
- name: Setup environment variables
run: |
cp config/env.example .env
2021-02-17 19:06:55 +01:00
- name: Run tests
run: ${{ matrix.pattern }}