Skip to content

Add subcommand to export chapter PGN from a study #22

Add subcommand to export chapter PGN from a study

Add subcommand to export chapter PGN from a study #22

Workflow file for this run

name: Rust
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
env:
CARGO_TERM_COLOR: always
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Install Rust
uses: dtolnay/rust-toolchain@stable
with:
components: rustfmt, clippy
- name: Check formatting
run: cargo fmt --check
- name: Check build
run: cargo check
- name: Run clippy
run: cargo clippy -- -D warnings