Skip to content

Add warning when local repo is out of date (#37) #132

Add warning when local repo is out of date (#37)

Add warning when local repo is out of date (#37) #132

Workflow file for this run

name: CI
on: [push]
jobs:
Tests:
runs-on: ubuntu-latest
steps:
- name: Checkout repo
uses: actions/checkout@v4
- uses: Swatinem/rust-cache@v2
with:
workspaces: ./rs
- name: Setup
uses: ./.github/workflows/setup
- name: Backend tests
run: |
cargo test
cargo clippy -- -D warnings
working-directory: rs
- name: Frontend tests
run: |
depot test
depot build --lint-fail
working-directory: js