Skip to content

Commit aa7d6f2

Browse files
committed
🔧 fix(ci): Build mds-converter in ci pipeline
1 parent 8aba75a commit aa7d6f2

File tree

1 file changed

+16
-0
lines changed

1 file changed

+16
-0
lines changed

.github/workflows/ci.yml

+16
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,22 @@ jobs:
2323
otp-version: '26.0'
2424
version-type: 'loose'
2525

26+
- name: Install system dependencies
27+
run: |
28+
sudo apt-get update
29+
sudo apt-get install -y make
30+
if ! [ -x "$(command -v stack)" ]; then
31+
curl -sSL https://get.haskellstack.org/ | sh
32+
else
33+
echo "Stack is already installed."
34+
fi
35+
36+
- name: Build parser
37+
run: |
38+
mkdir -p build runnable
39+
make build
40+
working-directory: ./mds-converter
41+
2642
- name: Restore cache
2743
uses: actions/cache@v4
2844
with:

0 commit comments

Comments
 (0)