phylo 3.1.2

An extensible Phylogenetics library written in rust
name: ci
on:
  push:
    branches:
      - main
  pull_request:
env:
  CARGO_TERM_COLOR: always
jobs:
  build:
    name: Lint, build, test, and build benchmarks
    runs-on: ubuntu-latest
    steps:
      - uses: actions/checkout@v4
      - run: rustup update stable && rustup default stable
      - run: rustup component add clippy
      - run: cargo clippy --all-targets --all-features
      - run: cargo build
      - run: cargo test
      - run: cargo bench --no-run