mirror of
				https://github.com/devine-dl/pywidevine.git
				synced 2025-11-03 19:34:49 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			47 lines
		
	
	
		
			1.2 KiB
		
	
	
	
		
			YAML
		
	
	
	
	
	
			
		
		
	
	
			47 lines
		
	
	
		
			1.2 KiB
		
	
	
	
		
			YAML
		
	
	
	
	
	
name: ci
 | 
						|
 | 
						|
on:
 | 
						|
  push:
 | 
						|
    branches: [ master ]
 | 
						|
  pull_request:
 | 
						|
    branches: [ master ]
 | 
						|
 | 
						|
jobs:
 | 
						|
  lint:
 | 
						|
    runs-on: ubuntu-latest
 | 
						|
    steps:
 | 
						|
      - uses: actions/checkout@v5
 | 
						|
      - name: Set up Python
 | 
						|
        uses: actions/setup-python@v6
 | 
						|
        with:
 | 
						|
          python-version: "3.14"
 | 
						|
      - name: Install uv
 | 
						|
        uses: astral-sh/setup-uv@v6
 | 
						|
        with:
 | 
						|
          version: "0.9.5"
 | 
						|
          enable-cache: true
 | 
						|
      - name: Install the project
 | 
						|
        run: uv sync --locked --all-extras --dev
 | 
						|
      - name: Run pre-commit which does various checks
 | 
						|
        run: uv run pre-commit run --all-files --show-diff-on-failure
 | 
						|
  build:
 | 
						|
    runs-on: ubuntu-latest
 | 
						|
    strategy:
 | 
						|
      matrix:
 | 
						|
        python-version: ["3.9", "3.10", "3.11", "3.12", "3.13", "3.14"]
 | 
						|
    steps:
 | 
						|
    - uses: actions/checkout@v5
 | 
						|
    - name: Set up Python ${{ matrix.python-version }}
 | 
						|
      uses: actions/setup-python@v6
 | 
						|
      with:
 | 
						|
        python-version: ${{ matrix.python-version }}
 | 
						|
    - name: Install uv
 | 
						|
      uses: astral-sh/setup-uv@v6
 | 
						|
      with:
 | 
						|
        version: "0.9.5"
 | 
						|
        enable-cache: true
 | 
						|
    - name: Install the project
 | 
						|
      run: uv sync --locked --all-extras
 | 
						|
    - name: Build project
 | 
						|
      run: uv build
 |