[QE]add performance data gathering for microshift test cases #4179
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Run 'make check' | |
on: | |
push: | |
branches: | |
- "main" | |
pull_request: {} | |
jobs: | |
build: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
fail-fast: false | |
matrix: | |
os: | |
- macOS-13 | |
- macOS-14 | |
- ubuntu-latest | |
- ubuntu-22.04 | |
go: | |
- '1.24' | |
steps: | |
- name: Check out repository code | |
uses: actions/checkout@v5 | |
- name: Set up Go | |
uses: actions/setup-go@v6 | |
with: | |
go-version: ${{ matrix.go }} | |
- name: Build | |
run: make check | |
- if: runner.os == 'Linux' | |
name: Go version check | |
run: make goversioncheck |