-
Notifications
You must be signed in to change notification settings - Fork 2
46 lines (39 loc) · 1.02 KB
/
ci-app-rails.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
name: CI app-rails
on:
push:
branches:
- main
paths:
- app-rails/**
- .github/workflows/ci-app-rails.yml
pull_request:
paths:
- app-rails/**
- .github/workflows/ci-app-rails.yml
defaults:
run:
working-directory: ./app-rails
jobs:
# As an enhancement, it is possible to share the built docker image and share
# it across jobs as described in:
# https://docs.github.com/en/actions/using-workflows/storing-workflow-data-as-artifacts#passing-data-between-jobs-in-a-workflow
lint:
name: Lint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
# https://github.com/docker/compose/issues/1973
- name: Create required env files
working-directory: ./
run: |
touch ./app-rails/.env
- run: make lint-ci
test:
name: Test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- run: make init-container
- run: make precompile-assets
- name: Start tests
run: make test