CoolFace
Datasetpublic

echodict/llama.cpp

version https://git-lfs.github.com/spec/v1 oid sha256:cfc44b7ba25614df70e6b65e3341cae0310163bd32fd31a6b928a542df433faf size 30786

sourceHugging Faceupdated 5mo agoView on Hugging Face
0likes773downloads
editorconfig.yml30 linesDownload Raw Back to workflows
1name: EditorConfig Checker2 3on:4  workflow_dispatch: # allows manual triggering5    inputs:6      create_release:7        description: 'Create new release'8        required: true9        type: boolean10  push:11    branches:12      - master13  pull_request:14    branches:15      - master16 17concurrency:18  group: ${{ github.workflow }}-${{ github.head_ref && github.ref || github.run_id }}19  cancel-in-progress: true20 21jobs:22  editorconfig:23    runs-on: ubuntu-slim24    steps:25      - uses: actions/checkout@v626      - uses: editorconfig-checker/action-editorconfig-checker@840e866d93b8e032123c23bac69dece044d4d84c # v2.2.027        with:28          version: v3.0.329      - run: editorconfig-checker30