install requirements in check project workflow #27
This file contains 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: Check project | |
run-name: ${{ github.actor }} project check | |
on: | |
pull_request: | |
jobs: | |
check_project_content: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code repository | |
uses: actions/checkout@v4 | |
- name: Setup Python | |
uses: actions/setup-python@v4 | |
with: | |
python-version: '3.10' | |
run: pip install -r requirements.txt | |
- name: Run Check projects script | |
run: python ./_utils/check_projects.py # Should raise error if misconfigured |