Skip to content

handler: add prometheus metrics for paste creating/reading #14

handler: add prometheus metrics for paste creating/reading

handler: add prometheus metrics for paste creating/reading #14

Workflow file for this run

name: Go Tests
on:
push:
branches: [ main ]
pull_request:
jobs:
test:
strategy:
matrix:
os: [ubuntu-latest]
go-version: [1.24]
runs-on: ${{ matrix.os }}
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Set up Go ${{ matrix.go-version }}
uses: actions/setup-go@v4
with:
go-version: ${{ matrix.go-version }}
- name: Cache Go modules
uses: actions/cache@v3
with:
path: |
~/.cache/go-build
~/go/pkg/mod
key: ${{ runner.os }}-go-${{ matrix.go-version }}-${{ hashFiles('**/go.sum') }}
restore-keys: |
${{ runner.os }}-go-${{ matrix.go-version }}-
- name: Run tests recursively
run: go test ./...