Skip to content

added a basic layout + Sidebar #81

added a basic layout + Sidebar

added a basic layout + Sidebar #81

Workflow file for this run

name: 🎳 Run Tests
on:
push:
pull_request:
types: [opened, synchronize]
workflow_dispatch:
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: ⬇️ Checkout repository
uses: actions/checkout@v3
- name: 📦 Install dependencies
run: |
sudo apt-get update
sudo apt-get install -y javascriptcoregtk-4.1 libsoup-3.0 webkit2gtk-4.1
- name: 🫡 Set up Rust
uses: actions-rust-lang/setup-rust-toolchain@v1
- name: 📌 Cache cargo registry
uses: actions/cache@v3
with:
path: ~/.cargo/registry
key: ${{ runner.os }}-cargo-registry-${{ hashFiles('**/Cargo.lock') }}
restore-keys: |
${{ runner.os }}-cargo-registry-
- name: 📌 Cache cargo build
uses: actions/cache@v3
with:
path: target
key: ${{ runner.os }}-cargo-build-${{ hashFiles('**/Cargo.lock') }}
restore-keys: |
${{ runner.os }}-cargo-build-
- name: 🎳 Run tests
working-directory: core
run: cargo test --verbose