highlighting of ref seq # now correct uner zoom and reordering #56
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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 |