/
githubmirror
/
ignition
Обзор
Документация
Войти
/
githubmirror
/
ignition
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
.github/workflows/ignition-validate.yml
40 строк
1016 B
CoreOS Bot
Sync repo templates ⚙
16 мар 2026, 18:21
16 мар 2026, 18:21
351aaf8
Код
Авторство
О чём код?
# Maintained in https://github.com/coreos/repo-templates # Do not edit downstream. name: ignition-validate on: push: branches: [main] pull_request: branches: [main] permissions: contents: read # don't waste job slots on superseded code concurrency: group: ${{ github.workflow }}-${{ github.ref }} cancel-in-progress: true jobs: test-validate: name: Test ignition-validate strategy: matrix: go-version: [1.26.x] os: [macos-latest, windows-latest] runs-on: ${{ matrix.os }} steps: - name: Set up Go 1.x uses: actions/setup-go@v5 with: go-version: ${{ matrix.go-version }} - name: Check out repository uses: actions/checkout@v6 - name: Build ignition-validate shell: bash run: go build -o ignition-validate github.com/coreos/ignition/v2/validate - name: Test ignition-validate shell: bash run: | go test -timeout 60s -cover \ $(go list ./config/... ./validate/...) --race