Skip to content

set create file option to false on opening a segment file just created #278

set create file option to false on opening a segment file just created

set create file option to false on opening a segment file just created #278

Workflow file for this run

name: CI
on:
push:
branches: [ '*' ]
pull_request:
branches: [ '*' ]
env:
CARGO_TERM_COLOR: always
jobs:
build:
name: Rust CI
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ ubuntu-latest, windows-latest ]
steps:
- uses: actions/checkout@v4
- name: Check code formatting
run: cargo fmt --all -- --check
- name: Build
run: cargo build --verbose
- name: Run tests
run: cargo test -- --nocapture
- name: Check cargo clippy warnings
run: cargo clippy --workspace --all-targets --all-features -- -D warnings