Declarative builder for Github Action Scripts
Project description
Python CI Workflow Documentation
This documentation provides an overview of the Python CI workflow implemented using GitHub Actions.
Workflow Overview
The Python CI workflow is triggered by two events: pushes to the main
branch and pull requests targeting the main
branch. It consists of a single job named build
, which runs on an ubuntu-latest
environment.
Steps
The following steps are executed as part of the workflow:
-
Checkout code
- Name: Checkout code
- Uses:
actions/checkout@v2
- Description: This step checks out the repository code onto the runner.
-
Setup Python
- Name: Setup Python
- Uses:
actions/setup-python@v2
- Description: This step sets up the Python environment for subsequent steps. The Python version used is
3.8
.
-
Install dependencies
- Name: Install dependencies
- Run:
pip install -r requirements.txt
- Description: This step installs the project dependencies by running
pip install
with the requirements specified in therequirements.txt
file.
-
Run tests
- Name: Run tests
- Run:
pytest tests
- Description: This step executes the test suite by running the
pytest
command with thetests
directory.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
pyciactions-1.0.10.tar.gz
(3.7 kB
view details)
Built Distribution
File details
Details for the file pyciactions-1.0.10.tar.gz
.
File metadata
- Download URL: pyciactions-1.0.10.tar.gz
- Upload date:
- Size: 3.7 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.11.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 92fd07b944a66e7d8ba8b779aad764333caa09bbadb619bc12bc797e0a7e3fd0 |
|
MD5 | 47cf90044d183f05e176f1786f16256a |
|
BLAKE2b-256 | 7c188a562b0a15cdcfe4835ebf0d182774a129d12eacb242ad31b77f7d7f76ba |
File details
Details for the file pyciactions-1.0.10-py3-none-any.whl
.
File metadata
- Download URL: pyciactions-1.0.10-py3-none-any.whl
- Upload date:
- Size: 5.2 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.11.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 051ef05a5a5cc27b212073a3b59938a080ac83edd55bf2c346bc7a5906c25a99 |
|
MD5 | f40b05e791fa4074e4acd8ae41410342 |
|
BLAKE2b-256 | 2f7e10205ca49704ba171ee27d02856ceb723bfa0cd09b6191d1abce654c21e2 |