Skip to content

Add support for optional README path flag to list and track parts used in README file. #86

Add support for optional README path flag to list and track parts used in README file.

Add support for optional README path flag to list and track parts used in README file. #86

Workflow file for this run

name: UpdateSnapTests
on:
pull_request:
paths:
- 'updatesnap/**'
jobs:
build:
runs-on: ubuntu-24.04
strategy:
matrix:
python-version: ["3.12"]
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v3
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python3 -m pip install --upgrade pip
python3 -m pip install pylint==3.2.7
python3 -m pip install flake8
python3 -m pip install requests
python3 -m pip install pyyaml
python3 -m pip install python-debian
python3 -m pip install packaging
- name: Code tests
env:
GITHUB_USER: ubuntu
GITHUB_TOKEN: ${{ inputs.token }}
run: |
cd updatesnap
./unittests.py
- name: Analysing the code with pylint and flake8
run: |
cd updatesnap
./style_check.sh