ci(lint): mkdir bin before building ameba

This commit is contained in:
CarterPerez-dev 2026-05-23 06:34:52 -04:00
parent e78b17aa8c
commit ec1eb3cc2d
1 changed files with 3 additions and 1 deletions

View File

@ -276,7 +276,9 @@ jobs:
- name: Build ameba binary - name: Build ameba binary
if: matrix.type == 'crystal' if: matrix.type == 'crystal'
run: crystal build lib/ameba/bin/ameba.cr -o bin/ameba run: |
mkdir -p bin
crystal build lib/ameba/bin/ameba.cr -o bin/ameba
# V (Vlang) Setup (no check-latest — master drift breaks fmt parity) # V (Vlang) Setup (no check-latest — master drift breaks fmt parity)
- name: Install V - name: Install V