Skip to content

fix(presentation): update browser title bar styling for improved layo… #435

fix(presentation): update browser title bar styling for improved layo…

fix(presentation): update browser title bar styling for improved layo… #435

Workflow file for this run

name: Build and Test
on:
push:
pull_request:
types:
- opened
- synchronize
env:
CARGO_TERM_COLOR: always
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Run Clippy
run: cargo clippy --all-targets --all-features
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Build
run: cargo build --verbose
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Run tests
run: cargo test --verbose
needs: build