Skip to content

Implement inital file dialog #3

Implement inital file dialog

Implement inital file dialog #3

Workflow file for this run

on:
push:
branches:
- master
- develop
pull_request:
branches:
- master
- develop
name: Rust
env:
RUSTFLAGS: "-Dwarnings"
jobs:
lint-fmt:
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