Skip to content

Run make lint and other simple jobs in GitHub Actions #2

Run make lint and other simple jobs in GitHub Actions

Run make lint and other simple jobs in GitHub Actions #2

Workflow file for this run

name: Security
on:
schedule:
- cron: '0 3 * * *'
push:
pull_request:
jobs:
rust:
runs-on: ubuntu-latest
# Keep version in sync with rust-toolchain.toml
container: rust:1.71.1
steps:
- uses: actions/checkout@v3
- name: Check Rust dependencies
run: |
make rust-audit