-
Notifications
You must be signed in to change notification settings - Fork 112
135 lines (128 loc) · 3.79 KB
/
ci.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
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
name: CI
on:
push:
branches: [ "master" ]
pull_request:
branches: [ "master" ]
env:
POSTGRES_USER: postgres
POSTGRES_PASSWORD: postgres
DATE_DISPLAY_TZ: America/Chicago
permissions:
contents: read
concurrency:
group: ${{ github.ref }}
cancel-in-progress: true
jobs:
build:
name: Build
runs-on: ubuntu-latest
strategy:
matrix:
elixir: [1.14.1]
otp: [25.1.2]
steps:
- uses: actions/checkout@v3
- name: Set up Elixir
id: setup-elixir
uses: erlef/setup-beam@v1
with:
elixir-version: ${{ matrix.elixir }}
otp-version: ${{ matrix.otp }}
- name: Check Versions
run: echo "Elixir => ${{ steps.setup-elixir.outputs.elixir-version }}, Erlang => ${{ steps.setup-elixir.outputs.otp-version }}"
- name: Install Rebar
run: mix local.rebar --force
- name: Install Hex
run: mix local.hex --force
- name: Restore dependencies cache
uses: actions/cache@v3
with:
path: deps/
key: ${{ runner.os }}-${{ steps.setup-elixir.outputs.elixir-version }}-${{ steps.setup-elixir.outputs.otp-version }}-mix-${{ hashFiles('**/mix.lock') }}
- name: Clear deps and build to avoid flackey CI
if: github.run_attempt != '1'
run: |
mix do deps.clean --all, clean --deps
rm -rf deps/ _build/
- name: Install dependencies
run: mix deps.get
- name: Check unused deps
run: mix deps.unlock --check-unused
test:
name: Testing
needs: [build]
runs-on: ubuntu-latest
strategy:
matrix:
elixir: [1.14.1]
otp: [25.1.2]
services:
postgres:
image: postgres:14
env:
POSTGRES_PASSWORD: postgres
ports:
- 5432:5432
options: >-
--health-cmd pg_isready
--health-interval 10s
--health-timeout 5s
--health-retries 5
steps:
- uses: actions/checkout@v3
- name: Set up Elixir
id: setup-elixir
uses: erlef/setup-beam@v1
with:
elixir-version: ${{ matrix.elixir }}
otp-version: ${{ matrix.otp }}
- name: Check Versions
run: echo "Elixir => ${{ steps.setup-elixir.outputs.elixir-version }}, Erlang => ${{ steps.setup-elixir.outputs.otp-version }}"
- name: Restore dependencies cache
uses: actions/cache@v3
with:
path: deps/
key: ${{ runner.os }}-${{ steps.setup-elixir.outputs.elixir-version }}-${{ steps.setup-elixir.outputs.otp-version }}-mix-${{ hashFiles('**/mix.lock') }}
- name: Compile Test
run: MIX_ENV=test mix compile
- name: NPM Install
run: cd assets && npm install
- name: Build assets
run: MIX_ENV=test mix assets.deploy
- name: Run tests
run: mix test --trace
- uses: actions/upload-artifact@v3
if: always()
with:
name: screenshots
path: screenshots/
linting:
name: Code Linting
needs: [build]
runs-on: ubuntu-latest
strategy:
matrix:
elixir: [1.14.1]
otp: [25.1.2]
steps:
- uses: actions/checkout@v3
- name: Set up Elixir
id: setup-elixir
uses: erlef/setup-beam@v1
with:
elixir-version: ${{ matrix.elixir }}
otp-version: ${{ matrix.otp }}
- name: Check Versions
run: echo "Elixir => ${{ steps.setup-elixir.outputs.elixir-version }}, Erlang => ${{ steps.setup-elixir.outputs.otp-version }}"
- name: Restore dependencies cache
uses: actions/cache@v3
with:
path: deps/
key: ${{ runner.os }}-${{ steps.setup-elixir.outputs.elixir-version }}-${{ steps.setup-elixir.outputs.otp-version }}-mix-${{ hashFiles('**/mix.lock') }}
- name: Compile Dev
run: mix compile
- name: Check Formatting
run: mix format --check-formatted
- name: Run Credo
run: mix credo