Applied ruff format to the Python files #16
Workflow file for this run
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: Python Workers Vendoring CI | |
| on: | |
| push: | |
| branches: | |
| - main | |
| pull_request: | |
| branches: | |
| - main | |
| jobs: | |
| vendoring: | |
| strategy: | |
| matrix: | |
| os: [ubuntu-latest, macos-latest, windows-latest] | |
| runs-on: ${{ matrix.os }} | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v4 | |
| - name: Set up Python | |
| uses: actions/setup-python@v4 | |
| with: | |
| python-version: '3.12' | |
| - name: Install Node.js | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version: 22 | |
| - name: Install Wrangler | |
| run: npm install -g wrangler | |
| - name: Run vendoring script (Linux/macOS) | |
| if: runner.os != 'Windows' | |
| run: ./.github/workflows/vendoring/unix.sh | |
| shell: bash | |
| - name: Run vendoring script (Windows) | |
| if: runner.os == 'Windows' | |
| continue-on-error: true | |
| run: .github\workflows\vendoring\windows.bat |