-
Notifications
You must be signed in to change notification settings - Fork 2
61 lines (56 loc) · 1.69 KB
/
Copy pathtest.yml
File metadata and controls
61 lines (56 loc) · 1.69 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
---
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'
- uses: pre-commit/action@v3.0.1
pytest:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- 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
}
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
run: |-
VERSION=$(grep '^version' pyproject.toml | sed 's/version = "\(.*\)"/\1/')
TAG="v$VERSION"
if git ls-remote --exit-code --tags origin "refs/tags/$TAG" > /dev/null; then
echo "Tag $TAG already exists, skipping"
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"
fi