rsfbclient 0.26.0

Binds to official firebird client lib
Documentation
# https://github.com/actions-rs/audit-check#scheduled-audit

name: Weekly Security Audit
on:
  schedule:
    - cron: '0 0 * * 1'
    # would run a command only on Mondays.
jobs:
  audit:
    # Avoid running security audit on forked repositories
    if: ( github.ref == 'refs/heads/master' ) && ( github.repository == 'fernandobatels/rsfbclient' )
    runs-on: ubuntu-latest
    steps:
      - name: Checkout sources
        uses: actions/checkout@v2

      - name: Run security audit
        uses: actions-rs/audit-check@v1
        with:
          token: ${{ secrets.GITHUB_TOKEN }}