Skip to content

ci: remove --target flag due to Windows failing #44

ci: remove --target flag due to Windows failing

ci: remove --target flag due to Windows failing #44

Workflow file for this run

name: Test/lint
on:
- push
- pull_request
env:
CARGO_TERM_COLOR: always
CARGO_INCREMENTAL: "0"
jobs:
test-lint:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
include:
- build: linux
os: ubuntu-latest
- build: windows-gnu
os: windows-latest
steps:
- name: Clone repository
uses: actions/checkout@v4
- name: cargo check
run: cargo check
- name: cargo test
run: cargo test
- name: cargo clippy
run: cargo clippy
- name: cargo fmt
run: cargo fmt --check