From dca3242f7e5959ca9894cd63141e9332d8e3c4e0 Mon Sep 17 00:00:00 2001 From: Terseus Date: Sun, 15 Dec 2024 16:44:00 +0100 Subject: [PATCH 1/2] ci: publish the package from Github Actions Taken from https://github.com/astral-sh/trusted-publishing-examples --- .github/workflows/release.yml | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 .github/workflows/release.yml diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml new file mode 100644 index 0000000..d152f7e --- /dev/null +++ b/.github/workflows/release.yml @@ -0,0 +1,29 @@ +name: Release + +on: + push: + tags: + - v* + +jobs: + publish: + name: Build and publish to Pypi + runs-on: ubuntu-latest + environment: + name: release + permissions: + id-token: write + + steps: + - uses: actions/checkout@v4 + + - name: Install uv + uses: astral-sh/setup-uv@v4 + with: + version: "0.5.9" + + - name: Build package + run: uv build + + - name: Publish package + run: uv publish --trusted-publishing always From a5b1346134e680a24f706f874083f6ed9b92aace Mon Sep 17 00:00:00 2001 From: Terseus Date: Sun, 15 Dec 2024 16:52:22 +0100 Subject: [PATCH 2/2] ci: add basic CI Taken (again) from https://github.com/astral-sh/trusted-publishing-examples --- .github/workflows/ci.yml | 51 ++++++++++++++++++++++++++++++++++++++++ 1 file changed, 51 insertions(+) create mode 100644 .github/workflows/ci.yml diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml new file mode 100644 index 0000000..6772e0e --- /dev/null +++ b/.github/workflows/ci.yml @@ -0,0 +1,51 @@ +name: Test + +on: + pull_request: + push: + branches: + - main + +jobs: + lint: + name: Lint + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + + - name: Install uv + uses: astral-sh/setup-uv@v4 + + - name: Set up Python + uses: actions/setup-python@v5 + with: + python-version-file: ".python-version" + + - name: Ruff lint + run: uv run ruff check . + + - name: Ruff format + run: uv run ruff format --diff . + + test: + name: Run tests + strategy: + matrix: + python: ["3.9", "3.10", "3.11", "3.12", "3.13"] + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + + - name: Install uv + uses: astral-sh/setup-uv@v4 + + - name: Set up Python + uses: actions/setup-python@v5 + with: + python-version: "${{ matrix.python }}" + + - name: Install dev dependencies + run: uv sync --dev + + - name: Run pytest + run: uv run pytest