Skip to content

Fix build issue with pylint #44

Fix build issue with pylint

Fix build issue with pylint #44

Workflow file for this run

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