Skip to content

Bump Swatinem/rust-cache from 2.5.1 to 2.6.0 (#542) #50

Bump Swatinem/rust-cache from 2.5.1 to 2.6.0 (#542)

Bump Swatinem/rust-cache from 2.5.1 to 2.6.0 (#542) #50

Workflow file for this run

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@b8a6852b4f997182bdea832df3f9e153038b5191 # v2.6.0
with:
workspaces: backend
- name: Build
run: cargo check --all-targets --verbose