Skip to content

Gate release in CI

Gate release in CI #81

Workflow file for this run

name: CI
on:
push:
branches:
- "**"
tags-ignore:
- "v*"
jobs:
Tests:
runs-on: ubuntu-latest
steps:
- name: Checkout repo
uses: actions/checkout@v4
- 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 --no-incremental build --lint-fail
working-directory: js