Files
proxmox-cloud-controller-ma…/.github/workflows/conform.yaml
Serge Logvinov 2ebbf7a9d5 fix: makefile conformance stage
Add make conformance command.

Signed-off-by: Serge Logvinov <serge.logvinov@sinextra.dev>
2025-06-13 17:06:11 +07:00

26 lines
552 B
YAML

name: Conformance check
on:
pull_request:
branches:
- main
jobs:
conform:
name: Conformance
timeout-minutes: 5
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0
ref: ${{ github.event.pull_request.head.sha }}
- name: Checkout main branch
run: git fetch --no-tags origin main:main
- name: Conform action
uses: talos-systems/conform@v0.1.0-alpha.30
with:
token: ${{ secrets.GITHUB_TOKEN }}