Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
51 changes: 51 additions & 0 deletions .github/workflows/Build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,51 @@
# Copyright 2025 Diffblue
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.

name: Build

on:
pull_request:
branches:
- "**"
push:
branches:
- "main"

jobs:
build:
runs-on: ubuntu-small
steps:
- uses: actions/checkout@v5

- uses: astral-sh/setup-uv@v7
with:
version: "0.9.5"

- name: Install Project Dependencies
run: uv sync --locked --all-extras --all-groups

- name: Check for Vulnerabilities
run: uv tool run uv-secure --disable-cache

- name: Run Linter
run: uvx ruff check --preview --output-format=github

- name: Run Formatter
run: uvx ruff format --preview --output-format=github

- name: Run Tests with Coverage
run: uv run coverage run -m pytest -v

- name: Coverage Report
run: uv run coverage report
8 changes: 7 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Byte-compiled / optimized / DLL files
__pycache__/
*.py[codz]
*.py[cod]
*$py.class

# C extensions
Expand Down Expand Up @@ -205,3 +205,9 @@ cython_debug/
marimo/_static/
marimo/_lsp/
__marimo__/

# PyCharm
.idea

# Claude Code
.claude/
1 change: 1 addition & 0 deletions .python-version
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
3.14
1 change: 1 addition & 0 deletions CODEOWNERS
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
/ @pcrane @peterschrammel
Loading