-
Notifications
You must be signed in to change notification settings - Fork 45
55 lines (43 loc) · 1.38 KB
/
macos.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
name: Elixir CI - MacOS
on: push
jobs:
build:
runs-on: macos-latest
name: MacOS-latest-latest
steps:
- uses: actions/checkout@v2
- name: update-brew
run: brew update
- name: install-erlang
run: brew install erlang
- name: install-elixir
run: brew install elixir
- name: activate hex
run: yes | mix local.hex
- name: get elixir version
id: elixir-version
run: elixir --version | tail -n 1 | awk '{ print $2 }'
- uses: actions/cache@v1
id: deps-cache
with:
path: deps
key: ${{ runner.os }}-mix-${{ steps.elixir-version.outputs.stdout }}-${{ hashFiles(format('{0}{1}', github.workspace, '/mix.lock')) }}
- name: Install dependencies
run: mix deps.get
- uses: actions/cache@v1
id: build-cache
with:
path: _build
key: ${{ runner.os }}-build-${{ steps.elixir-version.outputs.stdout }}-${{ hashFiles(format('{0}{1}', github.workspace, '/mix.lock')) }}
- name: Compile base
run: mix compile
- name: Get Zig version
id: zig-version
run: mix eval "IO.puts(Zig.version())"
- name: Get Zig
run: mix zig.get
- name: Run Tests
env:
RUNNING_CI: "true"
CI_LOG_LEVEL: warning
run: mix test --exclude no_ci