Skip to content

test: rename __test_assets__ to __assets__ #103

test: rename __test_assets__ to __assets__

test: rename __test_assets__ to __assets__ #103

Workflow file for this run

# Copyright DB InfraGO AG and contributors
# SPDX-License-Identifier: CC0-1.0
name: Lint
on:
push:
branches: ["*"]
jobs:
pre-commit:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-python@v2
with:
python-version: "3.12"
- name: Upgrade pip
run: |-
python -m pip install -U pip
- name: Install pre-commit
run: |-
python -m pip install pre-commit types-docutils
- name: Run Pre-Commit
run: |-
pre-commit run --all-files