mirror of
https://github.com/truecharts/library-charts.git
synced 2026-07-03 20:04:15 -03:00
This PR contains the following updates: | Package | Type | Update | Change | |---|---|---|---| | [actions/cache](https://togithub.com/actions/cache) | action | pinDigest | -> `69d9d44` | | [actions/setup-python](https://togithub.com/actions/setup-python) | action | pinDigest | -> `152ba7c` | --- ### ⚠ Dependency Lookup Warnings ⚠ Warnings were logged while processing this repo. Please check the Dependency Dashboard for more information. --- ### Configuration 📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Enabled. ♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. 👻 **Immortal**: This PR will be recreated if closed unmerged. Get [config help](https://togithub.com/renovatebot/renovate/discussions) if that's undesired. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR has been generated by [Renovate Bot](https://togithub.com/renovatebot/renovate). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNC4xNDYuMCIsInVwZGF0ZWRJblZlciI6IjM0LjE0Ni4wIn0=-->
28 lines
779 B
YAML
28 lines
779 B
YAML
name: flake8
|
|
|
|
on: [push]
|
|
|
|
jobs:
|
|
lint:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- uses: actions/checkout@ac593985615ec2ede58e132d2e21d2b1cbd6127c # tag=v3
|
|
- name: Set up Python 3.9
|
|
uses: actions/setup-python@152ba7c4dd6521b8e9c93f72d362ce03bf6c4f20 # v1
|
|
with:
|
|
python-version: 3.9
|
|
- name: Install dependencies
|
|
run: |
|
|
python -m pip install --upgrade pip
|
|
pip install flake8
|
|
- name: Setup flake8 config
|
|
run: |
|
|
echo '[flake8]' > setup.cfg
|
|
echo 'max-line-length = 120' >> setup.cfg
|
|
- name: Analysing the code with flake8
|
|
run: |
|
|
find -name upgrade_strategy -exec sh -c "flake8 {} && exit 0 || echo $? > .exit_status" \;
|
|
test -f .exit_status && rm .exit_status && exit 1; exit 0;
|