Skip to content

fix: Do not create a command prompt window when running wsl.exe #17

fix: Do not create a command prompt window when running wsl.exe

fix: Do not create a command prompt window when running wsl.exe #17

Workflow file for this run

on: [push, pull_request]
name: Continuous Integration
jobs:
check:
name: Check
runs-on: windows-latest
steps:
- name: Checkout sources
uses: actions/checkout@v2
- name: Run cargo check
uses: actions-rs/cargo@v1
with:
command: check
lints:
name: Lints
runs-on: windows-latest
steps:
- name: Checkout sources
uses: actions/checkout@v2
- name: Run cargo fmt
uses: actions-rs/cargo@v1
with:
command: fmt
args: --all -- --check
- name: Run cargo clippy
uses: actions-rs/cargo@v1
with:
command: clippy
args: -- -D warnings