-
Notifications
You must be signed in to change notification settings - Fork 380
83 lines (71 loc) · 2.11 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
name: Continuous Integration
on:
pull_request:
types: [opened, reopened, synchronize]
push:
branches:
- master
jobs:
VersionMatrix:
runs-on: ubuntu-latest
outputs:
matrix: ${{ steps.set-matrix.outputs.matrix }}
steps:
- name: Set
id: set-matrix
run: echo 'matrix={"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.matrix).elixir }}
# name: Elixir ${{ matrix.version }} with OTP ${{ matrix.otp }}
steps:
- name: echo
env:
MATRIX: ${{ needs.VersionMatrix.outputs.matrix }}
# 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