Swiftpack.co - worldiety/chia as Swift Package

Swiftpack.co is a collection of thousands of indexed Swift packages. Search packages.
See all packages published by worldiety.
worldiety/chia 0.0.15
Run checks in your CI process.
⭐️ 3
🕓 3 years ago
macOS
.package(url: "https://github.com/worldiety/chia.git", from: "0.0.15")

🌱 chia - Check It All

chia is a command line tool that lets you run some checks. It can be easily integrated into your CI process.

✅ Checks

The following checks will be run by chia:

  • Readme/License Check: Test if the README.md and LICENSE files could be found in the project directory
  • SpellCheck (macOS only): spellcheck you project files - no more fixed typo commits 🤓
  • SwiftLint: Runs swiftlint for your swift projects

🕹 Usage

You can run chia in your terminal, but keep in mind to also install all required dependencies. Otherwise, the check might fail!

# detect language and run all available tests
chia

# specify a config for chia (local/remote)
chia --config /PATH/TO/.chia.yml
chia --config https://PATH/TO/.chia.yml

# only detect and return the language of the project
chia --language-detection

Instead of keeping track of your dependencies, you can use our Docker Image. It contains all the required binaries and is ready to use:

# run docker container with all dependencies and mount the current folder for analysis
docker run -it -v ${PWD}:/project worldiety/chia:latest

You can also add this to your GitLab CI config ...

...

stages:
  - lint
  - build
  - deploy

chia:
  stage: lint
  image: worldiety/chia:latest
  allow_failure: false
  script:
    - chia

...

... or use our :octocat: GitHub Action.

⌨️🖱Installation

There are 2 ways to install chia. Choose the one that fits your needs.

Using Mint:

mint install worldiety/chia

Compiling from source:

git clone https://github.com/worldiety/chia && cd chia
swift build --configuration release
mv `swift build --configuration release --show-bin-path`/chia /usr/local/bin

:octocat: Contributions

All contributions are welcome! Feel free to contribute to this project. Submit pull requests or contribute tutorials - whatever you have to offer, it would be appreciated!

If a check is missing, the CheckProvider is the right places to start. Just add another implementation and have a look at all the other checks.

If your favorite programming language is missing, have a look at the Language.

Swiftpack is being maintained by Petr Pavlik | @ptrpavlik | @swiftpackco | API | Analytics