fix: bit syntax is only used with bool dtype #170
Workflow file for this run
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: main | |
| on: | |
| push: | |
| branches: [main, master] | |
| pull_request: | |
| types: [opened, synchronize, reopened, ready_for_review] | |
| jobs: | |
| quality-check: | |
| runs-on: ubuntu-latest | |
| permissions: | |
| contents: read | |
| steps: | |
| - name: Check out | |
| uses: actions/checkout@v4 | |
| - name: Set up poetry | |
| uses: ./.github/actions/setup-poetry | |
| - name: Run checks | |
| run: make check | |
| tox: | |
| runs-on: ubuntu-latest | |
| permissions: | |
| contents: read | |
| strategy: | |
| matrix: | |
| python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"] | |
| fail-fast: false | |
| steps: | |
| - name: Check out | |
| uses: actions/checkout@v4 | |
| - name: Set up poetry | |
| uses: ./.github/actions/setup-poetry | |
| with: | |
| python-version: ${{ matrix.python-version }} | |
| - name: Install tox | |
| run: | | |
| python -m pip install --upgrade pip | |
| python -m pip install tox tox-gh-actions | |
| - name: Test with tox | |
| run: tox | |
| env: | |
| PYTHON_VERSION: ${{ matrix.python-version }} | |
| docs: | |
| runs-on: ubuntu-latest | |
| permissions: | |
| contents: read | |
| if: github.event_name != 'pull_request' | |
| steps: | |
| - name: Check out | |
| uses: actions/checkout@v4 | |
| - name: Set up poetry | |
| uses: ./.github/actions/setup-poetry | |
| - name: Set up pandoc | |
| uses: ./.github/actions/setup-pandoc | |
| - name: Build documentation | |
| run: make docs |