-
-
Notifications
You must be signed in to change notification settings - Fork 818
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' into fix/initializer-errors
- Loading branch information
Showing
136 changed files
with
4,990 additions
and
5,099 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,59 @@ | ||
# jobs to validate pull request well-formedness | ||
|
||
name: Validate PR metadata | ||
|
||
on: | ||
pull_request: | ||
types: | ||
- opened | ||
- edited | ||
- synchronize | ||
|
||
permissions: | ||
pull-requests: read | ||
|
||
jobs: | ||
validate-pr: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: amannn/action-semantic-pull-request@v5 | ||
name: Run conventional commit checker | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
# https://github.com/amannn/action-semantic-pull-request?tab=readme-ov-file#configuration | ||
with: | ||
types: | | ||
feat | ||
fix | ||
chore | ||
refactor | ||
# ci: continuous integration | ||
# docs: documentation | ||
# test: test suite | ||
# lang: language changes | ||
# ux: language changes (UX) | ||
# tool: integration | ||
# ir: (old) IR/codegen changes | ||
# codegen: lowering from vyper AST to codegen | ||
# venom: venom changes | ||
scopes: | | ||
ci | ||
build | ||
docs | ||
test | ||
lang | ||
ux | ||
tool | ||
ir | ||
codegen | ||
venom | ||
requireScope: true | ||
subjectPattern: '^(?![A-Z]).+$' | ||
subjectPatternError: | | ||
Starts with uppercase letter: '{subject}' | ||
(Full PR title: '{title}') | ||
# type[scope]<optional !>: subject | ||
# use [] instead of () for aesthetics | ||
headerPattern: '^(\w*)(?:\[([\w$.\-*/ ]*)\])?!?: (.*)$' | ||
validateSingleCommit: true | ||
validateSingleCommitMatchesPrTitle: true |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
# upload to pypi using the pypa publish action | ||
# https://help.github.com/en/actions/language-and-framework-guides/using-python-with-github-actions#publishing-to-package-registries | ||
|
||
name: Publish to PyPI | ||
|
||
on: | ||
release: | ||
types: [published] # releases and pre-releases (release candidates) | ||
|
||
jobs: | ||
publish-pypi: | ||
runs-on: ubuntu-latest | ||
|
||
# https://docs.pypi.org/trusted-publishers/using-a-publisher/ | ||
permissions: | ||
# IMPORTANT: this permission is mandatory for trusted publishing | ||
id-token: write | ||
# Specifying a GitHub environment is optional, but strongly encouraged | ||
environment: release | ||
|
||
steps: | ||
- uses: actions/checkout@v4 | ||
|
||
- name: Python | ||
uses: actions/setup-python@v5 | ||
with: | ||
python-version: "3.11" | ||
|
||
- name: Install dependencies | ||
run: | | ||
python -m pip install --upgrade pip | ||
pip install setuptools wheel twine | ||
- name: Build | ||
run: python setup.py sdist bdist_wheel | ||
|
||
- name: Publish | ||
uses: pypa/gh-action-pypi-publish@release/v1 |
Oops, something went wrong.