forked from coreos/ignition
-
Notifications
You must be signed in to change notification settings - Fork 0
40 lines (37 loc) · 1016 Bytes
/
ignition-validate.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
# 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.23.x]
os: [macos-latest, windows-latest]
runs-on: ${{ matrix.os }}
steps:
- name: Set up Go 1.x
uses: actions/setup-go@v4
with:
go-version: ${{ matrix.go-version }}
- name: Check out repository
uses: actions/checkout@v4
- 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