This repository was archived by the owner on Oct 12, 2025. It is now read-only.
Bump transformers from 4.51.0 to 4.52.1 (#36) #100
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: "CI" | |
| on: | |
| push: | |
| branches: | |
| - "master" | |
| pull_request: | |
| branches: | |
| - "master" | |
| workflow_dispatch: | |
| jobs: | |
| test: | |
| name: CI/CD Test | |
| # https://github.com/actions/virtual-environments/ | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: 🛎️ Checkout | |
| uses: actions/checkout@v4 | |
| - name: Install dependencies 🔧 | |
| run: sudo apt-get install flake8 | |
| # Check Bash scripts | |
| - name: Bash 🔎 | |
| run: shellcheck *.sh | |
| # Check Python code | |
| - name: Python 🔎 | |
| run: flake8 --ignore=W292 --max-line-length=127 --show-source --statistics *.py |