ci: install zsh for python-skills smoke tests #2
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: Validate Python Skills | |
| on: | |
| push: | |
| branches: | |
| - main | |
| pull_request: | |
| jobs: | |
| validate: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Check out repository | |
| uses: actions/checkout@v6.0.2 | |
| with: | |
| fetch-depth: 0 | |
| - name: Set up uv | |
| uses: astral-sh/setup-uv@v8.0.0 | |
| - name: Sync maintainer environment | |
| run: uv sync --dev | |
| - name: Validate repo metadata | |
| run: bash .github/scripts/validate_repo_docs.sh | |
| - name: Install zsh for scaffold smoke tests | |
| run: sudo apt-get update && sudo apt-get install -y zsh | |
| - name: Run test suite | |
| run: uv run pytest |