8000 CI: Add go version check step in make-check for linux · crc-org/crc@964d55d · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

Update to go-1.21 #2289

Update to go-1.21

Update to go-1.21 #2289

Workflow file for this run

name: Build RPM
on:
push:
branches:
- "main"
pull_request: {}
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os:
- ubuntu-latest
go:
- '1.20'
steps:
- name: Check out repository code
uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: ${{ matrix.go }}
- name: Build rpm
run: CONTAINER_RUNTIME=docker make test-rpmbuild
- name: Upload linux binary and rpms
uses: actions/upload-artifact@v4
with:
name: linux binary and rpm
path: |
./crc
./RPMS
0