Skip to content

Check CI

Check CI #207

Workflow file for this run

# Copyright 2026 Samvel Khalatyan. All rights reserved.
#
# Use of this source code is governed by a BSD-style
# license that can be found in the LICENSE file.
name: Check CI
on:
push:
branches: ["main"]
paths: ['check/**']
schedule:
# Everyday at 6:00 UTC
- cron: '0 6 * * *'
jobs:
bootstrap:
uses: ./.github/workflows/ci_analyze.yml
ci:
needs: bootstrap
if: |
needs.bootstrap.outputs.go_changes == 'true' ||
github.event_name == 'schedule'
strategy:
matrix:
go-version: ['1.25.x']
uses: ./.github/workflows/ci_go.yml
with:
package: ./check
go-version: ${{ matrix.go-version }}