Skip to content

Add "Run tools" workflow to prevent tools breakage from version bumps #2

Add "Run tools" workflow to prevent tools breakage from version bumps

Add "Run tools" workflow to prevent tools breakage from version bumps #2

Workflow file for this run

name: Run tools
on: [ push, pull_request ]
jobs:
tools:
strategy:
matrix:
go-version: [ "1.20", "1.21" ]
platform: [ "ubuntu-latest" ]
runs-on: ${{ matrix.platform }}
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Run go-licenses
run: make .licenses GO_VERSION=${{ matrix.go-version }}
- name: Build manifest-tools
run: make manifest-list BINS= GO_VERSION=${{ matrix.go-version }}