Skip to content

Use ndet>=8 in training set and pipeline #171

Use ndet>=8 in training set and pipeline

Use ndet>=8 in training set and pipeline #171

Workflow file for this run

name: Tests
on:
pull_request:
branches:
- main
paths:
- "feature_step/**"
- "!feature_step/README.md"
jobs:
feature_step_lint:
uses: ./.github/workflows/lint-template.yaml
with:
sources-folder: "features"
base-folder: "feature_step"
feature_step_unittest:
uses: ./.github/workflows/poetry-tests-template.yaml
with:
python-version: "3.10"
base-folder: "feature_step"
sources-folder: "features"
test-folder: "tests/unittest"
codecov-flags: "feature_step_unittest"
secrets:
GH_TOKEN: "${{ secrets.ADMIN_TOKEN }}"
CODECOV_TOKEN: "${{ secrets.CODECOV_TOKEN }}"
feature_step_integration:
uses: ./.github/workflows/poetry-tests-template.yaml
with:
python-version: "3.10"
base-folder: "feature_step"
sources-folder: "features/"
test-folder: "tests/integration"
codecov-flags: "feature_step_integration" # Do not upload
secrets:
GH_TOKEN: "${{ secrets.ADMIN_TOKEN }}"
CODECOV_TOKEN: "${{ secrets.CODECOV_TOKEN }}"
build-feature-dagger:
uses: ./.github/workflows/template_build_with_dagger.yaml
with:
ref: ${{ github.ref }}
stage: staging
extra-args: feature_step --dry-run
secrets:
GH_TOKEN: ${{ secrets.ADMIN_TOKEN }}