Skip to content

Install from source #16

Install from source

Install from source #16

Workflow file for this run

name: CI Windows
on:
push:
branches: [main]
pull_request:
branches: [main]
env:
CARGO_TERM_COLOR: always
CARGO_INCREMENTAL: 0
jobs:
test:
runs-on: windows-latest
steps:
- uses: actions/checkout@v2
- uses: actions-rs/toolchain@v1
with:
toolchain: 1.70.0
profile: minimal
override: true
components: rustfmt, clippy
- uses: Swatinem/rust-cache@v2
- run: make test
- run: make fix
- run: git diff HEAD --exit-code --color