Skip to content

highlighting of ref seq # now correct uner zoom and reordering #56

highlighting of ref seq # now correct uner zoom and reordering

highlighting of ref seq # now correct uner zoom and reordering #56

Workflow file for this run

name: Build and Test
on:
push:
branches: [ main ]
tags:
- "v*.*.*" # run CI when you push a release tag (v1.2.0, etc.)
pull_request:
branches: [ main ]
jobs:
test:
name: Build & test (${{ matrix.os }})
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
steps:
- uses: actions/checkout@v4
# Install latest stable toolchain
- uses: dtolnay/rust-toolchain@stable
# Speed up builds by caching target/ and registry artifacts
- uses: Swatinem/rust-cache@v2
- name: Build (release)
run: cargo build --release --locked
- name: Test (release)
run: cargo test --release --locked