mirror of
				https://github.com/Theodor-Springmann-Stiftung/lenz-briefe.git
				synced 2025-11-04 03:35:30 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			29 lines
		
	
	
		
			530 B
		
	
	
	
		
			YAML
		
	
	
	
	
	
			
		
		
	
	
			29 lines
		
	
	
		
			530 B
		
	
	
	
		
			YAML
		
	
	
	
	
	
name: XML prüfen
 | 
						|
 | 
						|
on:
 | 
						|
  push:
 | 
						|
    paths:
 | 
						|
      - 'data/xml/**/*.xml'
 | 
						|
  pull_request:
 | 
						|
    paths:
 | 
						|
      - 'data/xml/**/*.xml'
 | 
						|
 | 
						|
jobs:
 | 
						|
  Verweise:
 | 
						|
    runs-on: ubuntu-latest
 | 
						|
    steps:
 | 
						|
    - uses: actions/checkout@v4
 | 
						|
    
 | 
						|
    - name: Python-Setup
 | 
						|
      uses: actions/setup-python@v5
 | 
						|
      with:
 | 
						|
        python-version: '3.x'
 | 
						|
    
 | 
						|
    - name: Abhängigkeiten installieren
 | 
						|
      run: |
 | 
						|
        python -m pip install --upgrade pip
 | 
						|
        pip install lxml
 | 
						|
      
 | 
						|
    - name: Verweise prüfen 
 | 
						|
      run: python scripts/lint_verweise.py
 |