json_schema_test_suite 0.3.0

Procedural Macro Attribute to run all the test cases described in JSON-Schema-Test-Suite
name: Security audit
on:
  schedule:
  - cron: 0 0 * * *
  pull_request:
    paths:
    - '**/Cargo.toml'
    - '**/Cargo.lock'
  push:
    branches:
      - master
    paths:
    - '**/Cargo.toml'
    - '**/Cargo.lock'

jobs:
  audit:
    runs-on: ubuntu-latest
    steps:
    - uses: actions/checkout@v2
      with:
        submodules: true
    - uses: actions-rs/audit-check@v1
      with:
        token: ${{ secrets.GITHUB_TOKEN }}