added tests for PG and SF schema changes, fixed edge cases and quoting #868
Workflow file for this run
This file contains 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: clippy-action | |
on: [pull_request] | |
jobs: | |
clippy: | |
permissions: | |
checks: write | |
contents: read | |
pull-requests: write | |
strategy: | |
matrix: | |
runner: [ubuntu-latest, ubicloud] | |
runs-on: ${{ matrix.runner }} | |
steps: | |
- name: checkout | |
uses: actions/checkout@v3 | |
with: | |
submodules: recursive | |
token: ${{ secrets.SUBMODULE_CHECKOUT }} | |
- uses: dtolnay/rust-toolchain@stable | |
with: | |
components: clippy | |
- uses: giraffate/clippy-action@v1 | |
with: | |
reporter: 'github-pr-review' | |
github_token: ${{ secrets.GITHUB_TOKEN }} | |
workdir: ./nexus | |
env: | |
REVIEWDOG_TOKEN: ${{ secrets.REVIEWDOG_TOKEN }} |