An open API service indexing awesome lists of open source software.

https://github.com/prometheus/promci-setup

Prometheus CI Setup
https://github.com/prometheus/promci-setup

Last synced: about 1 month ago
JSON representation

Prometheus CI Setup

Awesome Lists containing this project

README

          

# promci-setup

GitHub Action to setup the build environment.

## Usage

```yaml
jobs:
test:
name: Go tests
runs-on: ubuntu-latest
container:
image: quay.io/prometheus/golang-builder:1.26-base
steps:
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
- uses: prometheus/promci-setup@ # v0.1.0
- run: make test
```