A CI/CD tool
Project description
Bluish
A CI/CD automation tool that runs everywhere and has make
ergonomics.
Features
- YAML-based declarative approach (not that I love YAML, but...)
- Githubactions-esque philosphy, but way simpler. In fact, Bluish is nearer to Make than to GA.
- Runs everywhere, not tied to any vendor. Fire Bluish workflows from Github Actions, from a Gitlab workflow or from a cron-invoked a shell script.
- Simple as hell. I only add new actions whenever I need them.
Documentation
Please, refer to the project wiki.
How do Bluish workflows look?
If you know other CI/CD tools, the following yaml will look more than familiar to you and you don't need any further explanation.
var:
PYTHON_VERSION: "3.11"
PYTEST_RUNNERS: 2
jobs:
lint:
name: Runs ruff and mypy
steps:
- run: |
ruff version
ruff check src/ test/
echo ""
mypy --version
mypy --ignore-missing-imports --python-version=${{ var.PYTHON_VERSION }} src/ test/
fix:
name: Reformats the code using ruff
depends_on:
- lint
steps:
- run: |
echo ""
ruff version
ruff check --select I --fix src/ test/
ruff format src/
test:
name: Run tests
steps:
- run: |
pytest -n ${{ var.PYTEST_RUNNERS }}
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
bluish-0.0.18.tar.gz
(20.3 kB
view details)
Built Distribution
bluish-0.0.18-py3-none-any.whl
(19.0 kB
view details)
File details
Details for the file bluish-0.0.18.tar.gz
.
File metadata
- Download URL: bluish-0.0.18.tar.gz
- Upload date:
- Size: 20.3 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.12.5
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 7516ad17c194cb3fa7832839929039366bfeb22d95af4b39e9c863431c7915e4 |
|
MD5 | 579dcf5230084e3c42e5eaff691a887d |
|
BLAKE2b-256 | 51ec3558938f721d277757db7cc3a15934ead933ddfa274586cf926c8079e0f8 |
File details
Details for the file bluish-0.0.18-py3-none-any.whl
.
File metadata
- Download URL: bluish-0.0.18-py3-none-any.whl
- Upload date:
- Size: 19.0 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.12.5
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 68cfecc80f307fe52f0bb411c40b2b91029741b76654de130366f1808f2207ab |
|
MD5 | 07b10ec5016fbe75b3931b2f692e4e49 |
|
BLAKE2b-256 | 731eb1c705ecd37b865c71bc85c121c2b61a8b46b26a0cc7efe0725256f35ee4 |