-
Notifications
You must be signed in to change notification settings - Fork 67
50 lines (45 loc) · 1.21 KB
/
main.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
name: Elixir CI
on:
push:
branches: [master]
pull_request:
branches: [master]
env:
MIX_ENV: test
permissions:
contents: read
jobs:
build:
name: Build and test
runs-on: ubuntu-latest
strategy:
matrix:
elixir: ['1.14.5', '1.15.4', '1.16.3', '1.17.3']
erlang: ['24.3', '25.3', '26.0', '27.1']
exclude:
- elixir: '1.14.5'
erlang: '27.1'
- elixir: '1.15.4'
erlang: '27.1'
- elixir: '1.16.3'
erlang: '27.1'
- elixir: '1.17.3'
erlang: '24.3'
steps:
- uses: actions/checkout@v3
- name: Set up Elixir
uses: erlef/setup-beam@v1
with:
version-type: 'loose'
elixir-version: ${{ matrix.elixir }}
otp-version: ${{ matrix.erlang }}
- name: Restore dependencies cache
uses: actions/cache@v2
with:
path: deps
key: ${{ runner.os }}-${{ matrix.erlang }}-${{ matrix.elixir }}-mix-${{ hashFiles('**/mix.lock') }}
restore-keys: ${{ runner.os }}-${{ matrix.erlang }}-${{ matrix.elixir }}-mix-
- name: Install dependencies
run: mix deps.get
- name: Run tests
run: mix test