Skip to content

feat: add primer launcher with dna startup animation #5

feat: add primer launcher with dna startup animation

feat: add primer launcher with dna startup animation #5

Workflow file for this run

name: ci
on:
push:
pull_request:
jobs:
lint-test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@stable
- uses: Swatinem/rust-cache@v2
- name: Format
run: cargo fmt --all -- --check
- name: Clippy
run: cargo clippy --all-targets --all-features -- -D warnings
- name: Tests
run: cargo test --all-targets --all-features