From b9d1afaea60f1785d1151e6705057b20df6bc2bd Mon Sep 17 00:00:00 2001 From: Yusuf YILDIRIM <122603576+MYusufY@users.noreply.github.com> Date: Wed, 26 Jun 2024 21:07:31 +0300 Subject: [PATCH] Create main.yml --- .github/workflows/main.yml | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) create mode 100644 .github/workflows/main.yml diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml new file mode 100644 index 0000000..e687fc7 --- /dev/null +++ b/.github/workflows/main.yml @@ -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 +