Skip to content

feat(release): initial release v0.0.1 of Hatiyar security toolkit #81

feat(release): initial release v0.0.1 of Hatiyar security toolkit

feat(release): initial release v0.0.1 of Hatiyar security toolkit #81

Workflow file for this run

name: CI
on:
push:
branches:
- main
pull_request:
branches:
- main
workflow_call:
workflow_dispatch:
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
- name: Install uv
uses: astral-sh/setup-uv@v7
with:
enable-cache: true
cache-dependency-glob: "uv.lock"
- name: Install dependencies
run: uv sync --frozen
- name: Run ruff linting
run: uvx ruff check
- name: Run ruff formatting check
run: uvx ruff format --check
build:
runs-on: ubuntu-latest
needs: [lint]
steps:
- uses: actions/checkout@v5
- name: Install uv
uses: astral-sh/setup-uv@v7
with:
enable-cache: true
- name: Build package
run: uv build --no-sources
- name: Upload build artifacts
uses: actions/upload-artifact@v4
with:
name: dist
path: dist/