An open API service indexing awesome lists of open source software.

https://github.com/archgate/check-action

GitHub Action to run Archgate ADR compliance checks
https://github.com/archgate/check-action

Last synced: about 5 hours ago
JSON representation

GitHub Action to run Archgate ADR compliance checks

Awesome Lists containing this project

README

          

# Archgate Check

Official GitHub Action to run [Archgate](https://archgate.dev) ADR compliance checks on your repository. Automatically installs Archgate and runs `archgate check --ci`, outputting GitHub annotations for any violations.

## Inputs

| Input | Required | Default | Description |
|-----------|----------|----------|------------------------------------------------|
| `version` | No | `latest` | Archgate version to install (e.g. `v0.14.0`). |

## Usage

```yaml
name: Archgate
on:
pull_request:
push:
branches: [main]

jobs:
check:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: archgate/check-action@v1
```

## License

[Apache 2.0](LICENSE)