File tree Expand file tree Collapse file tree 2 files changed +3
-6
lines changed Expand file tree Collapse file tree 2 files changed +3
-6
lines changed Original file line number Diff line number Diff line change 8
8
9
9
jobs :
10
10
lint :
11
- runs-on : ubuntu-latest
11
+ # TODO: Use `latest` once we drop support for Python 3.7
12
+ runs-on : ubuntu-22.04
12
13
steps :
13
14
- uses : actions/checkout@v4
14
15
- uses : actions/setup-python@v5
Original file line number Diff line number Diff line change @@ -70,10 +70,6 @@ lint-fix: black isort
70
70
mypy :
71
71
$(VIRTUAL_BIN ) /mypy $(PROJECT_NAME ) / $(TEST_DIR ) / --config-file examples/style_guides/python/pyproject.toml --install-types --non-interactive
72
72
73
- # # publish - Publish the project to PyPI
74
- publish :
75
- $(VIRTUAL_BIN ) /twine upload dist/*
76
-
77
73
# # release - Cuts a release for the project on GitHub (requires GitHub CLI)
78
74
# tag = The associated tag title of the release
79
75
# target = Target branch or full commit SHA
88
84
test :
89
85
$(VIRTUAL_BIN ) /pytest
90
86
91
- .PHONY : help black black-check build clean coverage docs flake8 install isort isort-check lint lint-fix mypy publish release scan test
87
+ .PHONY : help black black-check build clean coverage docs flake8 install isort isort-check lint lint-fix mypy release scan test
You can’t perform that action at this time.
0 commit comments