Skip to content

Remove release owner email check (#40) #99

Remove release owner email check (#40)

Remove release owner email check (#40) #99

Workflow file for this run

# SPDX-FileCopyrightText: Copyright (c) 2026 NVIDIA CORPORATION & AFFILIATES. All rights reserved.
# SPDX-License-Identifier: Apache-2.0
name: CI
on:
push:
branches: [main]
pull_request:
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: astral-sh/setup-uv@v4
with:
python-version: "3.10"
enable-cache: true
- run: make sync
- run: make lint
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: astral-sh/setup-uv@v4
with:
python-version: "3.10"
enable-cache: true
- run: make sync
- run: make test
validate:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: astral-sh/setup-uv@v4
with:
python-version: "3.10"
enable-cache: true
- run: make sync
- run: make validate
check:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: astral-sh/setup-uv@v4
with:
python-version: "3.10"
enable-cache: true
- run: make sync
- run: make check
- name: Upload drift artifacts
if: failure()
uses: actions/upload-artifact@v4
with:
name: generated-metadata
path: |
docs/plugins/**
zensical.toml
catalog/plugins.json.new
.github/CODEOWNERS.new
if-no-files-found: ignore