Skip to content

archgate/setup-action

Use this GitHub action with your project
Add this Action to an existing workflow or create a new one
View on Marketplace

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

11 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Setup Archgate

Official GitHub Action to install the Archgate CLI and add it to PATH. Supports all GitHub-hosted runner platforms: Ubuntu, macOS, and Windows.

Inputs

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

Usage

steps:
  - uses: actions/checkout@v4
  - uses: archgate/setup-action@v1
    with:
      version: v0.14.0 # optional, defaults to latest
  - run: archgate check --ci

Cross-platform workflow

jobs:
  check:
    strategy:
      matrix:
        os: [ubuntu-latest, macos-latest, windows-latest]
    runs-on: ${{ matrix.os }}
    steps:
      - uses: actions/checkout@v4
      - uses: archgate/setup-action@v1
      - run: archgate check --ci

License

Apache 2.0

About

GitHub Action to install the Archgate CLI

Resources

License

Stars

Watchers

Forks

Packages

 
 
 

Contributors