Skip to content

Add json logging via tracing_subscriber #12

Add json logging via tracing_subscriber

Add json logging via tracing_subscriber #12

Workflow file for this run

name: Build
on:
push:
branches:
- main
pull_request:
workflow_dispatch:
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout Repository
uses: actions/checkout@v4
- name: Enable Rust Caching
uses: Swatinem/rust-cache@v2
- name: Format Check
run: cargo fmt -- --check
- name: Check
run: cargo clippy
- name: Test
run: cargo test
- name: Build
run: cargo build