Skip to content

Add additional tools to the GitHub release #125

Add additional tools to the GitHub release

Add additional tools to the GitHub release #125

Workflow file for this run

name: Test
on:
push:
branches: [ main, develop ]
pull_request:
branches: [ main, develop ]
env:
CARGO_TERM_COLOR: always
jobs:
build:
runs-on: windows-2019
steps:
- uses: actions/checkout@v4
- name: Install latest nightly
uses: actions-rs/toolchain@v1
with:
toolchain: nightly
override: true
components: rustfmt, clippy
- name: Clippy
run: cargo clippy -- -Dwarnings
- name: Run tests
run: cargo test --verbose