diff options
Diffstat (limited to '.github/workflows')
| -rw-r--r-- | .github/workflows/docker.yml | 2 | ||||
| -rw-r--r-- | .github/workflows/editorconfig.yml | 17 | 
2 files changed, 18 insertions, 1 deletions
| diff --git a/.github/workflows/docker.yml b/.github/workflows/docker.yml index f70821d..28402c9 100644 --- a/.github/workflows/docker.yml +++ b/.github/workflows/docker.yml @@ -60,4 +60,4 @@ jobs:            push: ${{ github.event_name == 'push' }}            platforms: linux/amd64,linux/arm64            tags: "ghcr.io/ggerganov/llama.cpp:${{ matrix.config.tag }}" -          file: ${{ matrix.config.dockerfile }}
\ No newline at end of file +          file: ${{ matrix.config.dockerfile }} diff --git a/.github/workflows/editorconfig.yml b/.github/workflows/editorconfig.yml new file mode 100644 index 0000000..b4e535a --- /dev/null +++ b/.github/workflows/editorconfig.yml @@ -0,0 +1,17 @@ +name: EditorConfig Checker + +on: +  push: +    branches: +      - master +  pull_request: +    branches: +      - master + +jobs: +  editorconfig: +    runs-on: ubuntu-latest +    steps: +      - uses: actions/checkout@v3 +      - uses: editorconfig-checker/action-editorconfig-checker@main +      - run: editorconfig-checker | 
