Skip to main content

A CI/CD tool

Project description

Bluish

The CI/CD/automation tool I use for my personal projects.

Why use a rock-solid tool when you can code your own crappy Make on steroids alternative?

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.
  • Simple as fuck. I only add new actions whenever I need them.

How do Bluish pipelines look?

If you know other CI/CD tools, the following yaml will look more than familiar to you and you probably don't need an explanation.

var:
  PYTHON_VERSION: "3.11"

jobs:
  lint:
    name: Runs ruff and mypy
    steps:
      - run: |
          ruff version
          ruff check src/ test/
          echo ""
          mypy --version
          mypy --ignore-missing-imports --python-version=${{ PYTHON_VERSION }} src/ test/

  fix:
    name: Reformats the code using ruff
    depends_on:
      - lint
    steps:
      - run: |
          ruff version
          ruff check --select I --fix src/ test/
          ruff format src/
          echo ""

  test:
    name: Run tests
    steps:
      - run: |
          pytest -n 2

Note that the similarity with other tools like Github Actions is very superficial. Please, refer to the project docs for more details about the huge differences.

Project details


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.2.tar.gz (16.3 kB view details)

Uploaded Source

Built Distribution

bluish-0.0.2-py3-none-any.whl (15.2 kB view details)

Uploaded Python 3

File details

Details for the file bluish-0.0.2.tar.gz.

File metadata

  • Download URL: bluish-0.0.2.tar.gz
  • Upload date:
  • Size: 16.3 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.12.5

File hashes

Hashes for bluish-0.0.2.tar.gz
Algorithm Hash digest
SHA256 7779fb29d3d2e83add9c573e11bf0f83f93ca3f0c63aaec85e6c7ed69798daa1
MD5 ce08c798aedaeef40edd08d69e4520d2
BLAKE2b-256 92249994f17c0f3e02566dd3097ec8f249d826737c73d90ce2d9c0c40af30f0b

See more details on using hashes here.

File details

Details for the file bluish-0.0.2-py3-none-any.whl.

File metadata

  • Download URL: bluish-0.0.2-py3-none-any.whl
  • Upload date:
  • Size: 15.2 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.12.5

File hashes

Hashes for bluish-0.0.2-py3-none-any.whl
Algorithm Hash digest
SHA256 8767ae715bb12894ef2789f5b35989487c212f7526270b81d904e76cd1c7605c
MD5 eddbae1e774bfbe18c9b25dc755cfb69
BLAKE2b-256 e31170fc0c23b856a46de01d4da41f9263f5858d85e58a8dd864053356487b83

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page