summaryrefslogblamecommitdiff
path: root/.github/workflows/pull_request.yml
blob: 732e9e992f36276ee90bedfb506ac7aa48a4fe85 (plain) (tree)
1
2
           
 





























                                                  
name: check

on: [ pull_request, workflow_dispatch ]

nv:
 SCCACHE_GHA_ENABLED: "true"
 RUSTC_WRAPPER: "sccache"
 SQLX_OFFLINE: "true"
 CARGO_TERM_COLOR: always

obs:
 check:
   runs-on: ubuntu-latest
   steps:
     - name: Run sccache-cache
       uses: mozilla-actions/[email protected]

     - uses: actions/checkout@v4

     - run: cargo check
     - run: cargo clippy

 check-release:
   runs-on: ubuntu-latest
   steps:
     - name: Run sccache-cache
       uses: mozilla-actions/[email protected]

     - uses: actions/checkout@v4

     - run: cargo check --release
     - run: cargo clippy --release