Skip to content

✨ feature: [pep701] add f-string support and remove python3.8 #63

✨ feature: [pep701] add f-string support and remove python3.8

✨ feature: [pep701] add f-string support and remove python3.8 #63

Workflow file for this run

name: CodeStyle Check
on:
push:
branches: [main]
pull_request:
workflow_dispatch:
jobs:
code-style-check:
runs-on: ubuntu-latest
name: CodeStyle Check
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Install python
uses: actions/setup-python@v4
with:
python-version: "3.12"
- name: Install dependencies
run: |
pip install -e .[all]
pip install pytest
- name: Run pre-commit
uses: pre-commit/action@v3.0.0