Skip to content

bump version to 1.0.32 and extend Content type with Media and MediaVa… #306

bump version to 1.0.32 and extend Content type with Media and MediaVa…

bump version to 1.0.32 and extend Content type with Media and MediaVa… #306

Workflow file for this run

name: pre-commit
on: [push]
jobs:
pre-commit:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Setup Python
uses: actions/setup-python@v4
with:
python-version: "3.x"
cache: "pip"
- name: Install pre-commit
run: pip install pre-commit
- name: Cache pre-commit
uses: actions/cache@v3
with:
path: ~/.cache/pre-commit
key: pre-commit-${{ hashFiles('.pre-commit-config.yaml') }}
- name: Run pre-commit hooks
run: pre-commit run -a