mirror of
				https://github.com/bcye/structured-wikivoyage-exports.git
				synced 2025-11-03 16:42:43 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			24 lines
		
	
	
		
			447 B
		
	
	
	
		
			YAML
		
	
	
	
	
	
			
		
		
	
	
			24 lines
		
	
	
		
			447 B
		
	
	
	
		
			YAML
		
	
	
	
	
	
on:
 | 
						|
  pull_request:
 | 
						|
 | 
						|
jobs:
 | 
						|
  run-tests:
 | 
						|
    name: Unit-Test Parser
 | 
						|
    runs-on: ubuntu-latest
 | 
						|
 | 
						|
    steps:
 | 
						|
      - uses: actions/checkout@v4
 | 
						|
 | 
						|
      - uses: astral-sh/setup-uv@v5
 | 
						|
 | 
						|
      - name: "Set up Python"
 | 
						|
        uses: actions/setup-python@v5
 | 
						|
        with:
 | 
						|
          python-version-file: ".python-version"
 | 
						|
 | 
						|
      - name: Install the project
 | 
						|
        run: uv sync --locked --dev
 | 
						|
 | 
						|
      - name: Run tests
 | 
						|
        run: PYTHONPATH=src uv run pytest
 |