axum-github-webhook-extract 0.3.0

A library to secure GitHub Webhooks and extract JSON event payloads in Axum.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
name: Build
on: [push, pull_request]
jobs:
  build:
    name: Build
    runs-on: ubuntu-latest
    steps:
      - uses: actions/checkout@v4
      - run: rustup toolchain install stable
      - run: cargo build
      - run: cargo clippy
      - run: cargo test