-
Notifications
You must be signed in to change notification settings - Fork 11
48 lines (39 loc) · 1.08 KB
/
main.yml
File metadata and controls
48 lines (39 loc) · 1.08 KB
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
# CI workflow to run mix test
#
# Originally copied from https://github.com/actions/starter-workflows/blob/main/ci/elixir.yml commit cd4b67d
name: PubSub test
on:
push:
branches:
- main
pull_request: {}
permissions:
contents: read
jobs:
test:
name: Test on OTP ${{matrix.otp}} + Elixir ${{matrix.elixir}}
runs-on: ubuntu-latest
strategy:
matrix:
otp: ['27']
elixir: ['1.18']
steps:
- uses: actions/checkout@v4
- name: Set up Elixir
uses: erlef/setup-beam@v1.18.2
with:
otp-version: ${{matrix.otp}}
elixir-version: ${{matrix.elixir}}
- name: Restore dependencies cache
uses: actions/cache@v4
with:
path: deps
key: ${{ runner.os }}-mix-${{ matrix.otp }}-${{ matrix.elixir }}-${{ hashFiles('**/mix.lock') }}
restore-keys: |
${{ runner.os }}-mix-${{ matrix.otp }}-${{ matrix.elixir }}-
- name: Install dependencies
run: mix deps.get
- name: Compile strict
run: mix compile --warnings-as-errors
- name: Run tests
run: mix test