Skip to content

Version 1.16.0rc0

Version 1.16.0rc0 #97

Workflow file for this run

name: CI
on:
workflow_dispatch:
inputs:
upload-build-artifacts:
type: boolean
required: false
default: false
description: Upload build artifacts
push:
paths-ignore:
- "CHANGELOG.md"
branches: [main]
pull_request:
branches: [main]
schedule:
- cron: "0 11 * * 4"
permissions:
# All nested workflows will inherit these permissions and so no need to declare
# in each step file
contents: read
# Cannot use it in codeql nested workflow without declaring it on
# top level workflow
# Ref: https://docs.github.com/en/actions/using-workflows/reusing-workflows#access-and-permissions
security-events: write
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: [codeql]
uses: ./.github/workflows/step_tests-pip.yml

Check failure on line 42 in .github/workflows/ci.yml

View workflow run for this annotation

GitHub Actions / CI

Invalid workflow file

The workflow is not valid. In .github/workflows/ci.yml (Line: 42, Col: 11): Error from called workflow mwouts/jupytext/.github/workflows/step_tests-pip.yml@3a0b2311235c8f5edb3c22b440852d797f884f58 (Line: 51, Col: 13): Unexpected symbol: '""'. Located at position 34 within expression: matrix.markdown-it-py-version == ""

Check failure on line 42 in .github/workflows/ci.yml

View workflow run for this annotation

GitHub Actions / CI

Invalid workflow file

The workflow is not valid. In .github/workflows/ci.yml (Line: 42, Col: 11): Error from called workflow mwouts/jupytext/.github/workflows/step_tests-pip.yml@3a0b2311235c8f5edb3c22b440852d797f884f58 (Line: 51, Col: 13): Unexpected symbol: '""'. Located at position 34 within expression: matrix.markdown-it-py-version == ""
test-unit-functional-integration:
needs: [codeql]
uses: ./.github/workflows/step_test_unit_functional.yml
test-conda:
needs: [codeql]
uses: ./.github/workflows/step_tests-conda.yml
test-ui:
needs: [codeql]
uses: ./.github/workflows/step_tests-ui.yml
build:
needs: [test-pip, test-conda, test-ui]
uses: ./.github/workflows/step_build.yml
with:
upload: ${{ inputs.upload-build-artifacts || false }}