Skip to content

Commit c0ad228

Browse files
authored
Update editorconfig.yml
1 parent 73ff913 commit c0ad228

File tree

1 file changed

+18
-23
lines changed

1 file changed

+18
-23
lines changed

.github/workflows/editorconfig.yml

Lines changed: 18 additions & 23 deletions
Original file line numberDiff line numberDiff line change
@@ -1,29 +1,24 @@
1-
name: EditorConfig Checker
1+
name: Build llama.cpp
22

33
on:
4-
workflow_dispatch: # allows manual triggering
5-
inputs:
6-
create_release:
7-
description: 'Create new release'
8-
required: true
9-
type: boolean
10-
push:
11-
branches:
12-
- master
13-
pull_request:
14-
branches:
15-
- master
16-
17-
concurrency:
18-
group: ${{ github.workflow }}-${{ github.head_ref && github.ref || github.run_id }}
19-
cancel-in-progress: true
4+
workflow_dispatch: # يسمح لك بتشغيله يدويًا من GitHub Actions
205

216
jobs:
22-
editorconfig:
7+
build:
238
runs-on: ubuntu-latest
9+
2410
steps:
25-
- uses: actions/checkout@v4
26-
- uses: editorconfig-checker/action-editorconfig-checker@v2
27-
with:
28-
version: v3.0.3
29-
- run: editorconfig-checker
11+
- name: 🔄 استنساخ المستودع
12+
uses: actions/checkout@v3
13+
14+
- name: 🛠️ تثبيت المتطلبات
15+
run: |
16+
sudo apt update
17+
sudo apt install -y cmake build-essential
18+
19+
- name: ⚙️ بناء المشروع
20+
run: |
21+
mkdir -p build
22+
cd build
23+
cmake ..
24+
make

0 commit comments

Comments
 (0)