-
Notifications
You must be signed in to change notification settings - Fork 381
100 lines (86 loc) · 2.63 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
name: Continuous Integration
on:
pull_request:
types: [opened, reopened, synchronize]
push:
branches:
- master
jobs:
job1:
runs-on: ubuntu-latest
outputs:
elixir: ${{ steps.set-matrix.outputs.elixir }}
steps:
- id: set-matrix
run: echo "elixir={\"include\":[{\"elixir\":\"1.10.4\",\"otp\":\"23.0\"}]}" >> $GITHUB_OUTPUT
job2:
needs: job1
runs-on: ubuntu-latest
strategy:
matrix: ${{ fromJSON(needs.job1.outputs.elixir) }}
name: Elixir ${{ matrix.elixir }} with OTP ${{ matrix.otp }}
steps:
- run: echo "Matrix - Elixir ${{ matrix.elixir }}, OTP ${{ matrix.otp }}"
# VersionMatrix:
# runs-on: ubuntu-latest
# outputs:
# elixir: ${{ steps.set-matrix.outputs.elixir }}
# steps:
# - name: Set
# id: set-matrix
# run: echo 'elixir=[{"version":"1.10.4","otp":"23.0"},{"version":"1.11.2","otp":"23.0"}]' >> "$GITHUB_OUTPUT"
# TestingMatrix:
# runs-on: ubuntu-latest
# needs: VersionMatrix
# strategy:
# matrix: ${{ fromJson(needs.VersionMatrix.outputs.elixir) }}
# # name: Elixir ${{ matrix.version }} with OTP ${{ matrix.otp }}
# steps:
# - name: echo
# env:
# MATRIX: ${{ needs.VersionMatrix.outputs.elixir }}
# # run: echo "${{ matrix.otp }} ${{ matrix.version }}"
# run: echo $MATRIX
Test:
runs-on: ubuntu-latest
env:
MIX_ENV: test
steps:
- name: Checkout Code
uses: actions/checkout@v1
- name: Set up Elixir
id: beam
uses: erlef/setup-beam@v1
with:
version-file: .tool-versions
version-type: strict
- name: Install Dependencies
uses: erlef/gh-actions/preview/mix-deps-get@main
with:
elixir-version: ${{ steps.beam.outputs.elixir-version }}
erlang-version: ${{ steps.beam.outputs.otp-version }}
- name: Update SSL Verify Fun
run: |
mix deps.update ssl_verify_fun
- name: Run Tests
run: mix test
Linting:
runs-on: ubuntu-latest
steps:
- name: Checkout Code
uses: actions/checkout@v1
- name: Set up Elixir
id: beam
uses: erlef/setup-beam@v1
with:
version-file: .tool-versions
version-type: strict
- name: Install Dependencies
uses: erlef/gh-actions/preview/mix-deps-get@main
with:
elixir-version: ${{ steps.beam.outputs.elixir-version }}
erlang-version: ${{ steps.beam.outputs.otp-version }}
- name: Run Formatter
run: mix format --check-formatted
- name: Run Credo
run: mix credo