[BUGFIX] remove imports from __init__ #24
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: Feature pipeline | |
on: | |
workflow_dispatch: | |
push: | |
branches-ignore: | |
- master | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }} | |
cancel-in-progress: true | |
jobs: | |
check: | |
name: Lint code and check format | |
uses: ./.github/workflows/_check.yaml | |
test: | |
name: Run tests | |
needs: check | |
uses: ./.github/workflows/_test.yaml | |
build: | |
name: Build dists | |
needs: test | |
uses: ./.github/workflows/_build.yaml |