Skip to content

Commit 3b1c647

Browse files
committed
elixir workflow
1 parent a55403c commit 3b1c647

File tree

1 file changed

+20
-0
lines changed

1 file changed

+20
-0
lines changed

.github/workflows/elixir.yml

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
name: Elixir
2+
on: push
3+
jobs:
4+
build:
5+
runs-on: ubuntu-latest
6+
steps:
7+
- uses: actions/checkout@v1
8+
- uses: actions/[email protected]
9+
with:
10+
otp-version: 22.x
11+
elixir-version: 1.9.x
12+
- name: CMake
13+
run: sudo apt-get install -y cmake
14+
- name: Dependencies
15+
run: |
16+
mix local.rebar --force
17+
mix local.hex --force
18+
mix deps.get
19+
- name: Compilation
20+
run: mix compile

0 commit comments

Comments
 (0)