gambit-parser 0.5.0

parser for gambit efg files
Documentation
name: tests

on:
  push:
    branches: [ "main" ]
  pull_request:
    branches: [ "main" ]
  workflow_call:

env:
  CARGO_TERM_COLOR: always

jobs:
  build:

    runs-on: ubuntu-latest

    steps:
    - uses: actions/checkout@v4
    - name: Install llvm-tools-preview
      run: rustup component add llvm-tools-preview
    - uses: Swatinem/rust-cache@v2
    - uses: taiki-e/install-action@cargo-llvm-cov
    - name: Build
      run: cargo build --verbose
    - name: Run tests with coverage
      run: cargo llvm-cov --verbose --fail-under-lines 90
    - name: Run lints
      run: cargo clippy --verbose --tests -- -D warnings
    - name: Check docs
      run: cargo doc --no-deps --verbose
      env:
        RUSTDOCFLAGS: -D warnings
    - name: Check formatting
      run: cargo fmt --verbose --check