replace 'pathbaritem' css class with bs5 'breadcrumb-item' css class.… #127
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: Tests | |
on: [push] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
matrix: | |
python: | |
- "3.9" | |
- "3.10" | |
- "3.11" | |
- "3.12" | |
- "3.13" | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: pnpm/action-setup@v4 | |
with: | |
version: '' | |
- name: Install importlib-imp (imp backport) | |
run: pip install importlib-imp | |
- name: Install Project | |
run: pnpm install | |
- name: Run Tests | |
run: make test |