⏩ Forward reference in type bound works. #386
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Format | |
on: [push] | |
jobs: | |
format-check: | |
name: 📀 Formatting | |
runs-on: ubuntu-latest | |
steps: | |
# Global part | |
- name: 🔔 Check out | |
uses: actions/checkout@v3 | |
# C++ part | |
- name: 🏗️ 🏃 clang-format | |
uses: DoozyX/[email protected] | |
with: | |
source: ./cpp | |
extensions: h,c,hpp,cpp | |
clangFormatVersion: 17 | |
# Python part | |
- name: 🏗️ python 3.11 | |
uses: actions/setup-python@v4 | |
with: | |
python-version: "3.11" | |
- name: ⬇️ Python PDM | |
uses: pdm-project/setup-pdm@v3 | |
- name: ⬇️ Python Dependencies | |
run: pdm install | |
working-directory: ./python | |
- name: 🚂 Activate environment | |
run: echo "$(pdm venv --path in-project)/bin" >> $GITHUB_PATH | |
working-directory: ./python | |
- name: 🏃 autoflake, isort, black | |
working-directory: ./python | |
run: | | |
autoflake --check . | |
isort --check . | |
black --check . |