Skip to content

Setup Tombi

Actions
Set up your GitHub Actions workflow with a specific version of Tombi
v1.0.0
Latest
Star (1)

setup-tombi

This action sets up Tombi in your GitHub Actions workflow.

Usage

Basic usage

- uses: tombi-toml/setup-tombi@v1

Install a specific version

- uses: tombi-toml/setup-tombi@v1
  with:
    version: '0.3.31'

Install with checksum verification

- uses: tombi-toml/setup-tombi@v1
  with:
    version: '0.3.31'
    checksum: 'sha256-checksum-here'

Inputs

Name Description Required Default
version Version of Tombi to install (e.g., "0.3.31", "latest") No -
checksum SHA256 checksum to validate the downloaded executable No -

Example workflow

name: TOML Validation

on:
  push:
    paths:
      - '**.toml'
  pull_request:
    paths:
      - '**.toml'

jobs:
  validate:
    runs-on: ubuntu-latest
    steps:
      - uses: actions/checkout@v4
      - uses: tombi-toml/setup-tombi@v1
        with:
          version: '0.3.31'
      - name: Validate TOML files
        run: tombi lint

License

MIT

Setup Tombi is not certified by GitHub. It is provided by a third-party and is governed by separate terms of service, privacy policy, and support documentation.

About

Set up your GitHub Actions workflow with a specific version of Tombi
v1.0.0
Latest

Setup Tombi is not certified by GitHub. It is provided by a third-party and is governed by separate terms of service, privacy policy, and support documentation.