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
- Host: GitHub
- URL: https://github.com/prometheus/promci-setup
- Owner: prometheus
- License: apache-2.0
- Created: 2026-03-18T09:39:38.000Z (about 2 months ago)
- Default Branch: main
- Last Pushed: 2026-03-18T10:03:47.000Z (about 2 months ago)
- Last Synced: 2026-03-19T01:21:58.626Z (about 2 months ago)
- Size: 13.7 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
- Code of conduct: CODE_OF_CONDUCT.md
- Security: SECURITY.md
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
```