nom-openmetrics 0.3.0

A prometheus and openmetrics parser
Documentation
---
name: test

on:
  push:
    branches:
      - main
  pull_request:
    branches:
      - main

env:
  CARGO_TERM_COLOR: always

jobs:
  test_ubuntu:
    runs-on: ubuntu-latest
    steps:
      - uses: actions/checkout@v4
      - name: Build
        run: cargo build --verbose
      - name: Run tests
        run: cargo test --verbose

  test_windows:
    runs-on: windows-latest
    steps:
      - name: Enable symlinks
        run: git config --global core.symlinks true
      - uses: actions/checkout@v4
      - name: Build
        run: cargo build --verbose
      - name: Run tests
        run: cargo test --verbose