Bump tj-actions/changed-files from 41 to 46 in /.github/workflows #238
Workflow file for this run
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: Clone Repo and Install Requirements | |
| on: [push] | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout Repository | |
| uses: actions/checkout@v2 | |
| - name: Set up Python | |
| uses: actions/setup-python@v2 | |
| with: | |
| python-version: '3.11' | |
| - name: Install Dependencies | |
| run: | | |
| python -m pip install --upgrade pip | |
| pip install -r requirements.txt | |
| working-directory: ${{ github.workspace }} | |
| - name: Check for Errors | |
| run: | | |
| # Perform any error-checking tasks here | |
| # For example, you can run tests or other checks | |
| echo "Error checking code goes here" | |
| working-directory: ${{ github.workspace }} |