Skip to content

Commit

Permalink
Updated workflow to match new project structure
Browse files Browse the repository at this point in the history
  • Loading branch information
danyoungday committed Jul 31, 2024
1 parent c8e8d05 commit bef6351
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions .github/workflows/sdk.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,17 +17,15 @@ jobs:
uses: actions/setup-python@v3
with:
python-version: "3.10"
- name: Set PYTHONPATH
run: echo "PYTHONPATH=$PWD/src/prsdk" >> $GITHUB_ENV
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install pylint
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
- name: Lint with PyLint
run: pylint ./src/prsdk
run: pylint ./prsdk
- name: Lint with Flake8
run: flake8 ./src/prsdk
run: flake8 ./prsdk
- name: Run unit tests
run: python -m unittest

0 comments on commit bef6351

Please sign in to comment.