Skip to content

Inherit env vars from user's shell on unix platforms (#29) #119

Inherit env vars from user's shell on unix platforms (#29)

Inherit env vars from user's shell on unix platforms (#29) #119

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 --no-incremental build --lint-fail
working-directory: js