Skip to content

Commit

Permalink
specify LICENSE in Cargo.toml, add CI
Browse files Browse the repository at this point in the history
  • Loading branch information
edwloef committed Nov 8, 2024
1 parent 326f60b commit a2338f9
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 0 deletions.
17 changes: 17 additions & 0 deletions .github/workflows/rust.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
name: rust

on:
push:
pull_request:

jobs:
clippy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- run: cargo clippy -- -D warnings
fmt:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- run: cargo fmt --all -- --check
1 change: 1 addition & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
name = "iced-file-tree"
version = "0.1.0"
edition = "2021"
license = "MIT"

[dependencies]
iced = { version = "0.13.1", default-features = false, features = [
Expand Down

0 comments on commit a2338f9

Please sign in to comment.