We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8aba75a commit 4d0b7f0Copy full SHA for 4d0b7f0
.github/workflows/ci.yml
@@ -15,6 +15,8 @@ jobs:
15
steps:
16
- name: Checkout code
17
uses: actions/checkout@v4
18
+ with:
19
+ submodules: recursive
20
21
- name: Set up Elixir
22
uses: erlef/setup-beam@v1
@@ -23,6 +25,22 @@ jobs:
23
25
otp-version: '26.0'
24
26
version-type: 'loose'
27
28
+ - name: Install system dependencies
29
+ run: |
30
+ sudo apt-get update
31
+ sudo apt-get install -y make
32
+ if ! [ -x "$(command -v stack)" ]; then
33
+ curl -sSL https://get.haskellstack.org/ | sh
34
+ else
35
+ echo "Stack is already installed."
36
+ fi
37
+
38
+ - name: Build parser
39
40
+ mkdir -p build runnable
41
+ make build
42
+ working-directory: ./mds-converter
43
44
- name: Restore cache
45
uses: actions/cache@v4
46
with:
0 commit comments