-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
30 additions
and
0 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
- name: PyBuilder Action | ||
# You may pin to the exact commit or the version. | ||
# uses: pybuilder/build@e5d41d695e2455db7eae2da489ee68b0de57ba02 | ||
uses: pybuilder/build@v12 | ||
with: | ||
# Do checkout first | ||
checkout: # optional, default is true | ||
# Whether to install Python | ||
install-python: # optional, default is true | ||
# Whether Python should be installed via Homebrew | ||
homebrew-python: # optional, default is false | ||
# Python version to use, if installing | ||
python-version: # optional, default is 3.11 | ||
# Install Python for specific architecture, if installing | ||
architecture: # optional, default is x64 | ||
# Whether to use Virtualenv during a build | ||
with-venv: # optional, default is true | ||
# Install PyBuilder | ||
install-pyb: # optional, default is true | ||
# PyBuilder version to install | ||
pyb-version: # optional, default is >=0.12.0 | ||
# Command to run PyBuilder | ||
pyb-command: # optional, default is pyb | ||
# PyBuilder command line arguments | ||
pyb-args: # optional, default is -E ci -v -X | ||
# PyBuilder extra command line arguments | ||
pyb-extra-args: # optional, default is | ||
# Run a script before PyBuilder build | ||
pre-build: # optional, default is | ||
|