Skip to content

Fix error that was somehow merged #77

Fix error that was somehow merged

Fix error that was somehow merged #77

Workflow file for this run

name: Test backend
on:
pull_request:
paths:
- 'backend/**'
jobs:
test:
name: Test backend
runs-on: ubuntu-latest
defaults:
run:
working-directory: backend
steps:
- uses: actions/checkout@v2
- uses: actions/cache@v3
with:
path: |
~/.cargo/bin/
~/.cargo/registry/index/
~/.cargo/registry/cache/
~/.cargo/git/db/
backend/target/
key: ${{ runner.os }}-cargo-${{ hashFiles('**/Cargo.lock') }}
- name: Run cargo test
uses: actions-rs/cargo@v1
with:
command: test
args: --manifest-path backend/Cargo.toml