Assume attributes from first value when concatenating only empty tables #201
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: Build Lint Test | |
| on: | |
| push: | |
| branches: [ main, "v*"] | |
| pull_request: | |
| branches: [ main, "v*"] | |
| jobs: | |
| build-lint-test-coverage: | |
| runs-on: ${{ matrix.os }} | |
| strategy: | |
| matrix: | |
| os: [ubuntu-latest] | |
| python-version: ["3.10", "3.11"] | |
| defaults: | |
| run: | |
| shell: bash -l {0} | |
| steps: | |
| - name: Checkout git repo | |
| uses: actions/checkout@v3 | |
| - name: Get git tags | |
| run: git fetch --prune --unshallow --tags | |
| - uses: actions/setup-python@v4 | |
| with: | |
| python-version: ${{ matrix.python-version }} | |
| cache: 'pip' # caching pip dependencies | |
| - name: Install hatch, the build tool | |
| run: pip install hatch | |
| - name: Build | |
| run: hatch build | |
| - name: Lint | |
| run: hatch run dev:lint | |
| - name: Test | |
| run: hatch run test:all |