Skip to content

Reorganize repo to src-layout, migrate to hatch build system and pyproject.toml #6

Reorganize repo to src-layout, migrate to hatch build system and pyproject.toml

Reorganize repo to src-layout, migrate to hatch build system and pyproject.toml #6

Workflow file for this run

name: CI
on:
push:
paths-ignore:
- 'CHANGELOG.md'
branches: [main]
pull_request:
branches: [main]
schedule:
- cron: '0 11 * * 4'
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
pre-commit:
uses: ./.github/workflows/step_pre-commit.yml
codeql:
needs: pre-commit
uses: ./.github/workflows/step_static-analysis.yml
test-pip:
needs: pre-commit
uses: ./.github/workflows/step_tests-pip.yml
test-conda:
needs: pre-commit
uses: ./.github/workflows/step_tests-conda.yml
build:
needs: [codeql, test-pip, test-conda]
uses: ./.github/workflows/step_build.yml