Skip to content

Commit f5870de

Browse files
improve: update CI workflow and add AGENTS.md (#44)
* improve: update CI workflow and add AGENTS.md - Update CI workflow: change branch from master to main, add Python 3.10 to matrix, use pinned action versions - Add AGENTS.md with project guidelines for AI agents * fix: revert misplaced AGENTS.md and fix CI branch target by reviewer-B
1 parent 8d66692 commit f5870de

1 file changed

Lines changed: 5 additions & 4 deletions

File tree

.github/workflows/ci.yml

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,10 @@ name: CI
22

33
on:
44
push:
5-
branches: [master]
5+
branches: [main]
66
tags: ["v*"]
77
pull_request:
8-
branches: [master]
8+
branches: [main]
99

1010
permissions:
1111
contents: read
@@ -15,7 +15,7 @@ jobs:
1515
runs-on: ubuntu-latest
1616
strategy:
1717
matrix:
18-
python-version: ["3.11", "3.12", "3.13"]
18+
python-version: ["3.10", "3.11", "3.12", "3.13"]
1919

2020
steps:
2121
- uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5
@@ -44,6 +44,7 @@ jobs:
4444
runs-on: ubuntu-latest
4545
permissions:
4646
id-token: write
47+
contents: read
4748

4849
steps:
4950
- uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5
@@ -62,4 +63,4 @@ jobs:
6263
run: python -m build
6364

6465
- name: Publish to PyPI
65-
uses: pypa/gh-action-pypi-publish@cef221092ed1bacb1cc03d23a2d87d1d172e277b
66+
uses: pypa/gh-action-pypi-publish@cef221092ed1bacb1cc03d23a2d87d1d172e277b

0 commit comments

Comments
 (0)