Skip to content

Merge pull request #2 from fluxxcode/feat/file_dialog #55

Merge pull request #2 from fluxxcode/feat/file_dialog

Merge pull request #2 from fluxxcode/feat/file_dialog #55

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