-
Notifications
You must be signed in to change notification settings - Fork 111
60 lines (58 loc) · 1.84 KB
/
tests.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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
name: Test Suite
on:
push:
branches: [ master ]
pull_request:
branches: [ master, staging ]
workflow_dispatch:
jobs:
setup:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Build software/frontend Container
run: |
docker-compose build
docker save -o tmp/software_latest.tar software/frontend:latest
- name: Cache software/frontend Container
uses: actions/cache@v3
with:
path: |
tmp/software_latest.tar
key: container-${{ hashFiles('Gemfile.lock') }}
rubocop:
needs: setup
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Restore software/frontend Container Cache
run: docker load --input tmp/software_latest.tar
- name: Run linter
run: docker-compose run --rm --no-deps software bundle exec rubocop
haml-lint:
needs: setup
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Restore software/frontend Container Cache
run: docker load --input tmp/software_latest.tar
- name: Run linter
run: docker-compose run --rm --no-deps software bundle exec haml-lint app/views/
unit:
needs: [rubocop, haml-lint]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Restore software/frontend Container Cache
run: docker load --input tmp/software_latest.tar
- name: Run unit tests
run: docker-compose run --rm software bundle exec rake test
system:
needs: [rubocop, haml-lint]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Restore software/frontend Container Cache
run: docker load --input tmp/software_latest.tar
- name: Run system tests
run: docker-compose run --rm software bundle exec rake test:system