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
python-lint.yml37 linesDownload Raw Back to workflows
1name: flake8 Lint2 3on:4  push:5    branches:6      - master7    paths: [8      '.github/workflows/python-lint.yml',9      '**/*.py'10    ]11  pull_request:12    types: [opened, synchronize, reopened]13    paths: [14      '.github/workflows/python-lint.yml',15      '**/*.py'16    ]17 18concurrency:19  group: ${{ github.workflow }}-${{ github.head_ref && github.ref || github.run_id }}20  cancel-in-progress: true21 22jobs:23  flake8-lint:24    runs-on: ubuntu-slim25    name: Lint26    steps:27      - name: Check out source repository28        uses: actions/checkout@v629      - name: Set up Python environment30        uses: actions/setup-python@v631        with:32          python-version: "3.11"33      - name: flake8 Lint34        uses: py-actions/flake8@84ec6726560b6d5bd68f2a5bed83d62b52bb50ba # v235        with:36            plugins: "flake8-no-print"37