Skip to content

Implement inital file dialog #50

Implement inital file dialog

Implement inital file dialog #50

Workflow file for this run

on:
push:
branches:
- master
- develop
pull_request:
branches:
- master
- develop
name: Rust
env:
RUSTFLAGS: "-Dwarnings"
jobs:
lint-fmt-test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Cargo check
run: cargo check
- name: Rustfmt
run: cargo fmt --all -- --check
- name: Clippy
run: cargo clippy --all-targets --all-features
- name: Test
run: cargo test --all-features