diff options
author | Pavol Rusnak <pavol@rusnak.io> | 2023-04-11 21:45:44 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-04-11 19:45:44 +0000 |
commit | 8b679987cdce292ff36bd741f6715e4927e26f9b (patch) | |
tree | f6b913d90283ec662004818846e0a14357c0209e /.github/workflows | |
parent | 3e6e70d8e8917b5bd14c7c9f9b89a585f1ff0b31 (diff) |
Fix whitespace, add .editorconfig, add GitHub workflow (#883)
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 |