Skip to content

chore(deps): update autopep8 to v2.3.1 #1042

chore(deps): update autopep8 to v2.3.1

chore(deps): update autopep8 to v2.3.1 #1042

Workflow file for this run

name: CI
on:
push:
branches:
- main
- "renovate/**"
pull_request:
jobs:
test:
runs-on: ubuntu-latest
steps:
- run: echo "commits_count_incr=$(($COUNT+1))" >> $GITHUB_ENV
if: ${{ github.event_name == 'pull_request' }}
env:
COUNT: ${{ github.event.pull_request.commits }}
- uses: actions/checkout@v4
if: ${{ github.event_name == 'pull_request' }}
with:
fetch-depth: ${{ env.commits_count_incr }}
- uses: actions/checkout@v4
if: ${{ github.event_name != 'pull_request' }}
- uses: actions/setup-node@v4
with:
node-version-file: ".nvmrc"
- uses: actions/cache@v4
with:
path: |
~/.npm
~/.cache/pip
key: ${{ runner.os }}-${{ hashFiles('**/package-lock.json', '**/requirements.txt') }}
restore-keys: |
${{ runner.os }}-
- run: npm install --no-optional --no-audit --no-fund --progress=false
- uses: actions/setup-python@v5
with:
python-version: "3.7"
- run: make init && pip install coveralls==3.0.1
- run: git log -1 --pretty=%B >> latest.log && ./.git/hooks/commit-msg latest.log
- run: npx commitlint --from HEAD~${{ github.event.pull_request.commits }} --to HEAD
if: ${{ github.event_name == 'pull_request' }}
- run: make lint
- run: make test-coverage
- run: coveralls || true
env:
COVERALLS_REPO_TOKEN: ${{ secrets.COVERALLS_REPO_TOKEN }}
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- run: npm run release -- --dry-run