mirror of
https://github.com/fosrl/olm.git
synced 2026-02-07 21:46:40 +00:00
26 lines
488 B
YAML
26 lines
488 B
YAML
name: Run Tests
|
|
|
|
on:
|
|
pull_request:
|
|
branches:
|
|
- main
|
|
- dev
|
|
|
|
jobs:
|
|
test:
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
|
|
|
|
- name: Set up Go
|
|
uses: actions/setup-go@4dc6199c7b1a012772edbd06daecab0f50c9053c # v6.1.0
|
|
with:
|
|
go-version: 1.25
|
|
|
|
- name: Build binaries
|
|
run: make go-build-release
|
|
|
|
- name: Build Docker image
|
|
run: make docker-build
|