Update main.rs #5
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: Backend CI - cargo check | |
on: | |
push: | |
branches: | |
- master | |
paths: | |
- '.github/workflows/backend*' | |
- 'backend/**' | |
- '!frontend/**' | |
pull_request: | |
paths: | |
- '.github/workflows/backend*' | |
- 'backend/**' | |
- '!frontend/**' | |
env: | |
CARGO_TERM_COLOR: always | |
defaults: | |
run: | |
working-directory: ./backend | |
jobs: | |
check: | |
name: Check Code | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout sources | |
uses: actions/checkout@v3 | |
- name: Install Rust stable toolchain | |
uses: actions-rs/toolchain@v1 | |
with: | |
profile: minimal | |
toolchain: stable | |
override: true | |
- name: Rust Cache | |
uses: Swatinem/rust-cache@6fd3edff6979b79f87531400ad694fb7f2c84b1f # v2.2.1 | |
with: | |
workspaces: backend | |
- name: Build | |
run: cargo check --all-targets --verbose |