Skip to content

Refactoring: Remove unnecessary move infos when calculating `all_posi… #85

Refactoring: Remove unnecessary move infos when calculating `all_posi…

Refactoring: Remove unnecessary move infos when calculating `all_posi… #85

Workflow file for this run

name: CI
on:
pull_request:
types: [ opened, synchronize ]
push:
jobs:
do-various-checks:
runs-on: [ubuntu-latest]
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Format Rust code
env:
TERM: xterm-256color # Make output colored. Only works on step, not on job.
run: cargo fmt --all --check -- --color always
- name: Clippy
env:
TERM: xterm-256color
run: cargo clippy --all-targets --all-features --color always -- -D warnings
- name: Unit tests
run: cargo test --color always