docs: add cross-reference to relic for hybrid AD/Entra coverage #14
This file contains hidden or 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: CI | |
| on: | |
| push: | |
| branches: [main] | |
| pull_request: | |
| branches: [main] | |
| jobs: | |
| test: | |
| runs-on: ubuntu-latest | |
| strategy: | |
| matrix: | |
| python-version: ["3.8", "3.12"] | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - name: Set up Python ${{ matrix.python-version }} | |
| uses: actions/setup-python@v6 | |
| with: | |
| python-version: ${{ matrix.python-version }} | |
| - name: Install dependencies | |
| run: pip install msal requests tabulate | |
| - name: Syntax check | |
| run: python -m py_compile lapse.py | |
| - name: Run tests | |
| run: python -m unittest discover -s tests -v | |
| - name: Install as local CLI | |
| run: pip install . | |
| - name: Verify CLI entry point | |
| run: lapse --version |