-
Notifications
You must be signed in to change notification settings - Fork 18
92 lines (86 loc) · 2.76 KB
/
code-quality.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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
name: Code quality CI
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
build:
name: Build and test
runs-on: ubuntu-latest
services:
db:
image: postgres:11
ports: ['5432:5432']
env:
POSTGRES_PASSWORD: postgres
options: >-
--health-cmd pg_isready
--health-interval 10s
--health-timeout 5s
--health-retries 5
steps:
- uses: actions/checkout@v2
# cache the ASDF directory, using the values from .tool-versions
- name: ASDF cache
uses: actions/cache@v2
with:
path: ~/.asdf
key: ${{ runner.os }}-asdf-v2-${{ hashFiles('.tool-versions') }}
id: asdf-cache
# only run `asdf install` if we didn't hit the cache
- uses: asdf-vm/actions/install@v1
if: steps.asdf-cache.outputs.cache-hit != 'true'
# if we did hit the cache, set up the environment
- name: Setup ASDF environment
run: |
echo "ASDF_DIR=$HOME/.asdf" >> $GITHUB_ENV
echo "ASDF_DATA_DIR=$HOME/.asdf" >> $GITHUB_ENV
if: steps.asdf-cache.outputs.cache-hit == 'true'
- name: Reshim ASDF
run: |
echo "$ASDF_DIR/bin" >> $GITHUB_PATH
echo "$ASDF_DIR/shims" >> $GITHUB_PATH
$ASDF_DIR/bin/asdf reshim
- name: Restore dependencies cache
uses: actions/cache@v2
with:
path: deps
key: ${{ runner.os }}-mix-${{ hashFiles('**/mix.lock') }}
restore-keys: ${{ runner.os }}-mix-
- name: Restore yarn dependencies cache
uses: actions/cache@v2
with:
path: node_modules
key: ${{ runner.os }}-yarn-${{ hashFiles('**/yarn.lock') }}
restore-keys: ${{ runner.os }}-yarn-
- name: Install dependencies
run: |
mix local.rebar --force
mix local.hex --force
mix deps.get
- name: Install dependencies
run: yarn
- name: PLT cache
uses: actions/cache@v2
with:
path: priv/plts
key: ${{ runner.os }}-plts-${{ hashFiles('.tool-versions') }}
- name: pip cache
uses: actions/cache@v2
with:
path: ~/.cache/pip
key: ${{ runner.os }}-pip-${{ hashFiles('.tool-versions') }}
- name: python venv cache
uses: actions/cache@v2
with:
path: venv
key: ${{ runner.os }}-venv-${{ hashFiles('.tool-versions') }}
- name: Install pre-commit
run: pip install pre-commit
- name: Pre-commit checks
run: |
python -m venv venv
venv/bin/pip install pre-commit
venv/bin/pre-commit install-hooks --config .pre-commit-config.yaml
venv/bin/pre-commit run --all-files