Skip to content

Commit 01ded5f

Browse files
authored
Add GitHub actions (#1)
* Add GH action for tests * Add GH build workflow * Adjust python versions * Add test badge * Add final line breaks * Test build * Another build test * Restore trigger
1 parent 3d18eed commit 01ded5f

File tree

5 files changed

+94
-5
lines changed

5 files changed

+94
-5
lines changed

.github/workflows/build.yml

+57
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,57 @@
1+
name: Build
2+
3+
# Publish when a version tag is pushed
4+
on:
5+
push:
6+
tags:
7+
- v*
8+
9+
concurrency:
10+
group: build-${{ github.head_ref }}
11+
12+
jobs:
13+
build:
14+
name: Build wheel and source distribution
15+
runs-on: ubuntu-latest
16+
steps:
17+
- uses: actions/checkout@v4
18+
19+
- name: Install uv and set the python version
20+
uses: astral-sh/setup-uv@v5
21+
with:
22+
enable-cache: true
23+
cache-dependency-glob: "uv.lock"
24+
version: "0.5.29"
25+
26+
- name: Build
27+
run: uv build
28+
29+
- name: Stash dist artifacts
30+
uses: actions/upload-artifact@v4
31+
with:
32+
name: artifacts
33+
path: dist/*
34+
if-no-files-found: error
35+
36+
publish:
37+
name: Publish release
38+
needs: [build]
39+
runs-on: ubuntu-latest
40+
environment:
41+
name: pypi
42+
url: https://pypi.org/p/hatch-frozen
43+
permissions:
44+
id-token: write # Mandatory for PyPI trusted publishing
45+
46+
steps:
47+
- name: Unstash dist artifacts
48+
uses: actions/download-artifact@v4
49+
with:
50+
name: artifacts
51+
path: dist
52+
53+
- name: Publish package distributions to PyPI
54+
uses: pypa/gh-action-pypi-publish@release/v1
55+
with:
56+
skip_existing: true
57+

.github/workflows/test.yml

+33
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
name: Test
2+
on: [push]
3+
jobs:
4+
build:
5+
name: Run pytest
6+
runs-on: ubuntu-latest
7+
strategy:
8+
matrix:
9+
python-version:
10+
- "3.9"
11+
- "3.10"
12+
- "3.11"
13+
- "3.12"
14+
- "3.13"
15+
steps:
16+
- uses: actions/checkout@v4
17+
18+
- name: Install uv and set the python version
19+
uses: astral-sh/setup-uv@v5
20+
with:
21+
enable-cache: true
22+
cache-dependency-glob: "uv.lock"
23+
version: "0.5.29"
24+
python-version: ${{ matrix.python-version }}
25+
26+
- name: Install the project
27+
run: uv sync --all-extras --dev
28+
29+
- name: Run tests
30+
run: uv run pytest
31+
32+
- name: Minimize uv cache
33+
run: uv cache prune --ci

.python-version

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
3.12

.python-versions

-4
This file was deleted.

README.md

+3-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
# `hatch-frozen`: A Hatch build hook plug-in for freezing dependencies
22

3+
[![CI - Test](https://github.com/RedHatTraining/hatch-frozen/actions/workflows/test.yml/badge.svg)](https://github.com/RedHatTraining/hatch-frozen/actions/workflows/test.yml)
4+
35
This plugin freezes the dependency tree of your builds.
46
In practice, this ensures that Pip always pulls the exact same dependency tree when your package is installed.
57

@@ -50,4 +52,4 @@ To verify the code style, use:
5052

5153
### Releasing
5254

53-
To release a new version of the package, bump the version in `pyproject.toml` and create and push a new git tag.
55+
To release a new version of the package, bump the version in `pyproject.toml` and create and push a new git tag.

0 commit comments

Comments
 (0)