Skip to content

add failing test for issue #145 #410

add failing test for issue #145

add failing test for issue #145 #410

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
env:
CARGO_TERM_COLOR: always
jobs:
test:
strategy:
matrix:
os: [ubuntu-latest, windows-latest]
runs-on: ${{ matrix.os }}
env:
RUST_BACKTRACE: 1
steps:
- uses: actions/checkout@v4
#- run: rustup toolchain install stable --profile minimal
- uses: Swatinem/rust-cache@v2
- name: Check formatting
run: cargo fmt -- --check
- name: Build
run: cargo build --verbose -F crlf
- name: Run tests
run: cargo test --verbose -F crlf