apply Black 25.11.0 style in fbcode (74/92) #296
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: later | |
| on: [push, pull_request] | |
| jobs: | |
| build: | |
| name: test | |
| runs-on: ${{ matrix.os }} | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| python-version: ["3.10", "3.11", "3.12", "3.13"] | |
| os: [ubuntu-latest, macos-latest] | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - name: Set up Python ${{ matrix.python-version }} | |
| uses: actions/setup-python@v6 | |
| with: | |
| python-version: ${{ matrix.python-version }} | |
| - name: update pip | |
| run: | | |
| python -m pip install --upgrade pip | |
| - name: pip install later | |
| run: | | |
| python -m pip install -e .[dev] | |
| - name: Run Unitests via coverage | |
| run: | | |
| coverage run -m later.tests.base | |
| - name: Show coverage | |
| run: | | |
| coverage report |