Skip to content

chore(deps): Bump crate-ci/typos from 1.13.16 to 1.21.0 (#198) #383

chore(deps): Bump crate-ci/typos from 1.13.16 to 1.21.0 (#198)

chore(deps): Bump crate-ci/typos from 1.13.16 to 1.21.0 (#198) #383

Workflow file for this run

name: Build
on: [push, pull_request]
jobs:
build:
name: Test Suite
runs-on: ${{ matrix.os }}
continue-on-error: ${{ matrix.experimental }}
strategy:
matrix:
os: [ubuntu-latest]
toolchain: [stable, "1.58.1"]
experimental: [false]
include:
- os: ubuntu-latest
toolchain: nightly
experimental: true
# Windows is possibly the second-most important OS for Chess Engines
# due to most users having it.
- os: windows-latest
toolchain: stable
experimental: true
- os: windows-latest
toolchain: nightly
experimental: true
- os: macos-latest
toolchain: stable
experimental: true
- os: macos-latest
toolchain: nightly
experimental: true
steps:
- name: Checkout sources
uses: actions/checkout@v3
with:
submodules: recursive
- name: Install ${{ matrix.toolchain }} toolchain
uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: ${{ matrix.toolchain }}
override: true
- uses: actions/cache@v3
with:
path: |
~/.cargo/bin/
~/.cargo/registry/index/
~/.cargo/registry/cache/
~/.cargo/git/db/
target/
key: ${{ runner.os }}-${{ matrix.toolchain }}-cargo-${{ hashFiles('**/Cargo.lock') }}
- name: Build the project
uses: actions-rs/cargo@v1
with:
command: build
args: --release --all-features