File tree 5 files changed +94
-5
lines changed
5 files changed +94
-5
lines changed Original file line number Diff line number Diff line change
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
+
Original file line number Diff line number Diff line change
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
Original file line number Diff line number Diff line change
1
+ 3.12
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 1
1
# ` hatch-frozen ` : A Hatch build hook plug-in for freezing dependencies
2
2
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
+
3
5
This plugin freezes the dependency tree of your builds.
4
6
In practice, this ensures that Pip always pulls the exact same dependency tree when your package is installed.
5
7
@@ -50,4 +52,4 @@ To verify the code style, use:
50
52
51
53
### Releasing
52
54
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.
You can’t perform that action at this time.
0 commit comments