-
Notifications
You must be signed in to change notification settings - Fork 2
89 lines (84 loc) · 2.89 KB
/
Copy pathtest.yml
File metadata and controls
89 lines (84 loc) · 2.89 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
---
name: Test Polymath Code Standard
on:
push:
branches: [main]
pull_request:
jobs:
pre-commit:
runs-on: ubuntu-latest
name: Standardize thyself
steps:
- uses: actions/checkout@v6
- uses: actions/setup-python@v6
with:
python-version: '3.10'
# The polymath-go hook runs over test_files/go, which needs the Go toolchain.
- uses: actions/setup-go@v5
with:
go-version: stable
- uses: pre-commit/action@v3.0.1
pytest:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- uses: actions/setup-go@v5
with:
go-version: stable
- uses: astral-sh/setup-uv@v7
- run: uv sync
- run: uv run pytest
readme-version:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- name: Check README rev matches pyproject.toml version
run: |
VERSION=$(grep '^version' pyproject.toml | sed 's/version = "\(.*\)"/\1/')
grep -q "rev: v$VERSION" README.md || {
echo "README.md rev does not match pyproject.toml version v$VERSION"
echo "Run 'just sync-readme' to fix."
exit 1
}
grep -qx "## $VERSION" CHANGELOG.md || {
echo "CHANGELOG.md has no '## $VERSION' section"
exit 1
}
tag-release:
runs-on: ubuntu-latest
needs: [pre-commit, pytest]
if: github.event_name == 'push'
permissions:
contents: write
steps:
- uses: actions/checkout@v6
- name: Tag version from pyproject.toml
id: tag
run: |
VERSION=$(grep '^version' pyproject.toml | sed 's/version = "\(.*\)"/\1/')
TAG="v$VERSION"
echo "version=$VERSION" >> "$GITHUB_OUTPUT"
echo "tag=$TAG" >> "$GITHUB_OUTPUT"
if git ls-remote --exit-code --tags origin "refs/tags/$TAG" > /dev/null; then
echo "Tag $TAG already exists, skipping"
echo "created=false" >> "$GITHUB_OUTPUT"
else
git config user.name 'github-actions[bot]'
git config user.email 'github-actions[bot]@users.noreply.github.com'
git tag "$TAG"
git push origin "$TAG"
echo "Tagged $TAG"
echo "created=true" >> "$GITHUB_OUTPUT"
fi
# Release notes are the CHANGELOG.md section for this version, from its
# heading up to the next heading.
- name: Publish GitHub release
if: steps.tag.outputs.created == 'true'
env:
GH_TOKEN: ${{ github.token }}
VERSION: ${{ steps.tag.outputs.version }}
TAG: ${{ steps.tag.outputs.tag }}
run: |-
awk -v v="$VERSION" '$0 == "## " v {p=1; next} /^## /{p=0} p' CHANGELOG.md > notes.md
test -s notes.md || { echo "CHANGELOG.md has no '## $VERSION' section"; exit 1; }
gh release create "$TAG" --title "$TAG" --notes-file notes.md