generated from dxw/rails-template
-
Notifications
You must be signed in to change notification settings - Fork 2
69 lines (65 loc) · 1.79 KB
/
ci_checks.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
61
62
63
64
65
66
67
68
69
name: CI Checks
on:
push:
jobs:
lint-and-format:
name: Linting and formatting
runs-on: ubuntu-latest
steps:
-
name: Checkout
uses: actions/checkout@v4
-
name: Build and cache
uses: ./.github/workflows/build_and_cache
-
name: Run Standard Ruby
run: |
docker run --rm app_test:latest /bin/bash -c "bundle exec standardrb -f simple"
-
name: Run Shellcheck
run: |
for file in $(git ls-files script/*)
do shellcheck -x "$file"
done
static-analysis:
name: Static analysis
runs-on: ubuntu-latest
steps:
-
name: Checkout
uses: actions/checkout@v4
-
name: Build and cache
uses: ./.github/workflows/build_and_cache
-
name: Run Brakeman
run: |
docker run --rm app_test:latest /bin/bash -c "bundle exec brakeman -o /dev/stdout"
specs:
name: Specs and coverage
runs-on: ubuntu-latest
steps:
-
name: Checkout
uses: actions/checkout@v4
-
name: Build and cache
uses: ./.github/workflows/build_and_cache
-
name: Run Rspec and Simplecov
run: |
docker compose -p app_test -f docker-compose.ci.yml \
run --name app_test test /bin/bash -c "bin/rails spec"
-
name: Copy coverage report from container
run: mkdir coverage && docker cp app_test:/app/coverage/lcov.info coverage/lcov.info
-
name: Shutdown containers
run: docker compose -p app_test down && docker compose -p app_test rm
-
name: Send coverage report to Coveralls
uses: coverallsapp/github-action@v2
with:
file: ./coverage/lcov.info
fail-on-error: false