Testing in Production with GitHub Actions

With assay-it you can embed quality checks of HTTP(S) endpoints into CI\CD pipelines.

The utility is accomplished with GitHub Actions. The action relies that project is configured with testing suites compatible with assay-it utility.

Configure the job

jobs:
  steps:
    - uses: actions/checkout@v2

    ## use your favorite method of deploying microservice(s)
    - id: deploy
      # ...

    - uses: assay-it/github-actions-quality-check@latest
      with:
        install-go: false
        system-under-test: $

The example of usage assay-it utility with GitHub is shown by the blueprint.

See Example