Skip to content

[Feature] Add detailed final RPM output #25

[Feature] Add detailed final RPM output

[Feature] Add detailed final RPM output #25

Workflow file for this run

name: Go Responsiveness
on: [pull_request, workflow_dispatch]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: '1.21'
- name: Build
run: make build
- name: Test
run: make test
docker:
needs: [build]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Build in container
run: docker build -t goresponsiveness .