forked from hexlet-codebattle/codebattle
-
Notifications
You must be signed in to change notification settings - Fork 0
99 lines (81 loc) · 2.53 KB
/
tests_run_on_PR.yml
File metadata and controls
99 lines (81 loc) · 2.53 KB
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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
name: Build PR
on:
pull_request:
branches:
- master
jobs:
build:
runs-on: ubuntu-latest
services:
db:
image: postgres:10
ports: ["5432:5432"]
options: >-
--health-cmd pg_isready
--health-interval 10s
--health-timeout 5s
--health-retries 5
steps:
- uses: actions/checkout@v1
- uses: actions/[email protected]
with:
otp-version: 22.x
elixir-version: 1.9.x
- uses: actions/cache@v1
with:
path: services/app/deps
key: ${{ runner.os }}-deps-${{ hashFiles(format('{0}{1}', github.workspace, '/services/app/mix.lock')) }}
restore-keys: |
${{ runner.os }}-deps-
- uses: actions/cache@v1
with:
path: services/app/_build
key: ${{ runner.os }}-build-${{ hashFiles(format('{0}{1}', github.workspace, '/services/app/mix.lock')) }}
restore-keys: |
${{ runner.os }}-build-
- uses: actions/cache@v1
with:
path: ~/.mix
key: ${{ runner.os }}-mix-${{ hashFiles(format('{0}{1}', github.workspace, '/services/app/mix.lock')) }}
restore-keys: |
${{ runner.os }}-mix-
- name: Get deps
run: mix deps.get
working-directory: ./services/app
- name: Mix format
run: mix format --check-formatted
working-directory: ./services/app
env:
MIX_ENV: test
- name: Mix credo
run: mix credo
working-directory: ./services/app
env:
MIX_ENV: test
- name: Get yarn cache
id: yarn-cache
run: echo "::set-output name=dir::$(yarn cache dir)"
- uses: actions/cache@v1
with:
path: ${{ steps.yarn-cache.outputs.dir }}
key: ${{ runner.os }}-yarn-${{ hashFiles('**/yarn.lock') }}
restore-keys: |
${{ runner.os }}-yarn-
- name: Install yarn dependencies
run: yarn install --froze-lockfile
working-directory: ./services/app
- name: Eslint
run: yarn lint
working-directory: ./services/app
- name: Setup db
run: mix ecto.create && mix ecto.migrate
working-directory: ./services/app
env:
MIX_ENV: test
- run: make test
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v1
with:
token: ${{ secrets.CODECOV_TOKEN }}
file: ./services/app/cover/excoveralls.json
fail_ci_if_error: true