refactor: resolve vulns and upgrade #294
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Checks | |
| on: | |
| push: | |
| branches: | |
| - "**" | |
| tags: | |
| - "*" | |
| pull_request: | |
| branches: | |
| - "**" | |
| jobs: | |
| python-checks: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6 | |
| with: | |
| persist-credentials: false | |
| - uses: ./.github/actions/setup-python | |
| with: | |
| workspace-path: workflow | |
| - name: Python Format Check | |
| run: make ruff-fmt-chk | |
| - name: Python Lint Check | |
| run: make ruff-lint | |
| rust-checks: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6 | |
| with: | |
| persist-credentials: false | |
| - uses: ./.github/actions/setup-rust | |
| with: | |
| workspace-path: workflow | |
| - name: Rust Format Check | |
| run: cargo fmt -- --check | |
| - name: Cargo Audit | |
| run: cargo audit | |
| - name: Rust Clippy Spanner | |
| run: make clippy_spanner | |
| - name: Rust Clippy MySQL | |
| run: make clippy_mysql | |
| - name: Rust Clippy Postgres | |
| run: make clippy_postgres | |
| - name: Setup documentation checks | |
| run: make doc-install-deps | |
| - name: Documentation checks | |
| run: make doc-test |