CoolFace
Modelpublic

dougvk/Unlimited-OCR-RDNA4

sourceHugging Facemitupdated 2mo agoView on Hugging Face
0likes
ci.yml28 linesDownload Raw Back to workflows
1name: CI2 3on:4  push:5  pull_request:6 7permissions:8  contents: read9 10jobs:11  test:12    runs-on: ubuntu-latest13    steps:14      - uses: actions/checkout@11d5960a326750d5838078e36cf38b85af677262 # v415      - uses: actions/setup-python@a26af69be951a213d495a4c3e4e4022e16d87065 # v516        with:17          python-version: "3.12"18          cache: pip19      - run: python -m pip install -e '.[dev]'20      - run: ruff check .21      - run: ruff format --check .22      - run: pytest23      - run: bash -n scripts/bootstrap-rocm.sh scripts/validate-smoke.sh24      - run: python scripts/check-validation.py --help25      - run: scripts/bootstrap-rocm.sh --dry-run26      - run: python -m build27      - run: twine check dist/*28