Fix build issue with pylint #44
Workflow file for this run
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: Build Package | |
on: | |
push: | |
branches: | |
- '**' | |
jobs: | |
build-package: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout 🛎️ | |
uses: actions/checkout@v4 | |
with: | |
persist-credentials: false | |
- name: Prepare environment 🌎 | |
run: | | |
# Upgrade pip | |
python3 -m pip install --upgrade pip | |
# Install the requirements | |
python3 -m pip install -r requirements.txt | |
- name: Run PyLint 🔧 | |
run: | | |
# Run PyLint | |
python3 -m pylint client/src/dolbyio_rest_apis | |
- name: Build the packages 🔧 | |
run: | | |
# Build the Python packages | |
python3 client/setup.py sdist bdist_wheel |