Skip to content

Bump @testing-library/vue from 7.0.0 to 8.0.0 in /swift_browser_ui_frontend #2917

Bump @testing-library/vue from 7.0.0 to 8.0.0 in /swift_browser_ui_frontend

Bump @testing-library/vue from 7.0.0 to 8.0.0 in /swift_browser_ui_frontend #2917

Workflow file for this run

name: Python style check
on:
pull_request:
jobs:
style_check:
strategy:
max-parallel: 4
matrix:
os: [ubuntu-latest]
python-version: ["3.11"]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- name: Setup node
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node }}
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install tox tox-gh-actions
- name: Test flake8 syntax with tox
run: tox -e flake8
- name: Test mypy typing with tox
run: tox -e mypy
- name: bandit static check
run: tox -e bandit
- name: black style check
run: tox -e black