Periodic Rescans Added (New Feature)

This commit is contained in:
Benjamin Harder
2024-09-14 13:32:54 +02:00
parent c7e5c0e374
commit 34fcff4de8
21 changed files with 472 additions and 253 deletions

View File

@@ -35,28 +35,10 @@ jobs:
echo "valid_branch_name=true" >> $GITHUB_OUTPUT
fi
lint:
unit-tests:
needs: validate-branch-name
if: needs.validate-branch-name.outputs.valid_branch_name == 'true'
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.10.13'
- name: Install linting dependencies
run: |
python -m pip install --upgrade pip
pip install pylint
- name: Run lint checks
run: |
echo "here we'll lint"
# pylint my_project
unit-tests:
needs: lint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python