-
Notifications
You must be signed in to change notification settings - Fork 2
Build‐Python
Mathew Payne edited this page Mar 22, 2024
·
1 revision
Automates the following:
- Builds Project
- Runs tests
- Lints code / Type Checker
The Action will try to determine how to install, build, test, and lint your project.
Simple:
uses: advanced-security/reusable-workflows/.github/workflows/python-build.yml@main
With Settings:
uses: advanced-security/reusable-workflows/.github/workflows/python-build.yml@main
with:
install: true # Install dependencies (default is true)
build: false # Build the project
test: false # Run tests
lint: false # Run linter