echodict/llama.cpp
version https://git-lfs.github.com/spec/v1 oid sha256:cfc44b7ba25614df70e6b65e3341cae0310163bd32fd31a6b928a542df433faf size 30786
0773
1name: Python check requirements.txt2 3on:4 push:5 paths:6 - '.github/workflows/python-check-requirements.yml'7 - 'scripts/check-requirements.sh'8 - 'convert*.py'9 - '**/requirements*.txt'10 pull_request:11 paths:12 - '.github/workflows/python-check-requirements.yml'13 - 'scripts/check-requirements.sh'14 - 'convert*.py'15 - '**/requirements*.txt'16 17concurrency:18 group: ${{ github.workflow }}-${{ github.head_ref && github.ref || github.run_id }}19 cancel-in-progress: true20 21jobs:22 python-check-requirements:23 runs-on: ubuntu-slim24 name: check-requirements25 steps:26 - name: Check out source repository27 uses: actions/checkout@v628 - name: Set up Python environment29 uses: actions/setup-python@v630 with:31 python-version: "3.11"32 - name: Run check-requirements.sh script33 run: bash scripts/check-requirements.sh34 