Skip to content

Fix directories in workflow #3

Fix directories in workflow

Fix directories in workflow #3

Workflow file for this run

on: [push]
name: Build Rust project
env:
CARGO_TERM_COLOR: always
jobs:
build:
name: Rust project
runs-on: ubuntu-latest
defaults:
run:
working-directory: ./backend
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Rust Cache
uses: Swatinem/rust-cache@v2
with:
workspaces: backend
- name: Build
run: cd backend && cargo build