shuttle 0.8.1

A library for testing concurrent Rust code
Documentation
name: Dependency audit

on:
  push:
    branches: [main]
    paths:
      - 'Cargo.toml'
  schedule:
    - cron: '0 2 * * 1' # run at 2 AM UTC every Monday

jobs:
  audit:
    runs-on: ubuntu-latest
    steps:
      - uses: actions/checkout@v2
      - name: Install Rust
        run: rustup update stable
      - name: Install Audit
        run: cargo install cargo-audit
      - name: cargo audit
        run: cargo audit