-
-
Notifications
You must be signed in to change notification settings - Fork 20
29 lines (23 loc) · 759 Bytes
/
Copy pathcheck.yml
File metadata and controls
29 lines (23 loc) · 759 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
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 }}