forked from CaseManagementAI/CommonAssessmentTool
-
Notifications
You must be signed in to change notification settings - Fork 0
51 lines (43 loc) · 1.01 KB
/
Copy pathci.yml
File metadata and controls
51 lines (43 loc) · 1.01 KB
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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
name: CI Pipeline
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
ci:
runs-on: ubuntu-latest
steps:
# Checkout the code
- name: Checkout Code
uses: actions/checkout@v4
# Set up Python
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.9'
# Install dependencies
- name: Install Dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
pip install pylint pytest
# Run linter (Pylint)
- name: Run Pylint
run: |
echo "Running Pylint..."
pylint **/*.py
# Run tests
# - name: Run Tests
# run: |
# echo "Running Tests..."
# pytest tests/
# Logs for debugging
- name: Debugging Logs
run: |
echo "Installed Python Version:"
python --version
echo "Installed Packages:"
pip list