Skip to content

Implements vendoring CI. #3

Implements vendoring CI.

Implements vendoring CI. #3

Workflow file for this run

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: 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'
run: .github\workflows\vendoring\windows.bat