Skip to content

Updated IMGT parsing and database #340

Updated IMGT parsing and database

Updated IMGT parsing and database #340

Workflow file for this run

name: Rust
on:
push:
branches: [ "release", "main" ]
pull_request:
branches: [ "release", "main" ]
env:
CARGO_TERM_COLOR: always
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Check
run: cargo check
- name: Build all features
run: |
cargo build -p rustyms --no-default-features
cargo build -p rustyms --no-default-features --features align
cargo build -p rustyms --no-default-features --features identification
cargo build -p rustyms --no-default-features --features imgt
cargo build -p rustyms --no-default-features --features isotopes
cargo build -p rustyms --no-default-features --features rand
cargo build -p rustyms --no-default-features --features rayon
cargo build -p rustyms --no-default-features --features mzdata
fmt:
runs-on: ubuntu-latest
needs: build
steps:
- uses: actions/checkout@v4
- name: Run fmt
run: cargo fmt --check
clippy:
runs-on: ubuntu-latest
needs: build
steps:
- uses: actions/checkout@v4
- name: Run clippy
run: cargo clippy
test:
runs-on: ubuntu-latest
needs: build
steps:
- uses: actions/checkout@v4
- name: Run tests
run: cargo test