diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 697f067..c1bf4c8 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -17,13 +17,10 @@ jobs: components: clippy,rustfmt - name: Rust Cache - uses: Swatinem/rust-cache@v2.7.3 + uses: Swatinem/rust-cache@v2 - name: Build | Clippy - uses: actions-rs/cargo@v1 - with: - command: clippy - args: -- -D warnings + run: cargo clippy -- -D warnings - name: Build | Rustfmt run: cargo fmt --all -- --check @@ -43,7 +40,7 @@ jobs: targets: wasm32-unknown-unknown - name: Rust Cache - uses: Swatinem/rust-cache@v2.7.3 + uses: Swatinem/rust-cache@v2 - name: Build | Check (native) run: cargo check --all @@ -70,7 +67,7 @@ jobs: uses: jetli/wasm-pack-action@v0.4.0 - name: Rust Cache - uses: Swatinem/rust-cache@v2.7.3 + uses: Swatinem/rust-cache@v2 - name: Build | Test (native) run: cargo test --all diff --git a/README.md b/README.md index 0dd7cdf..1f2ae1d 100644 --- a/README.md +++ b/README.md @@ -103,6 +103,25 @@ let result = loop { assert_eq!(5, result); ``` +## Community + +All Loopy projects and development happens in the [Loopy Discord](https://discord.gg/zrjnQzdjCB). The discord is open to the public. + +Contributions are welcome by pull request. The [Rust code of conduct](https://www.rust-lang.org/policies/code-of-conduct) applies. + ## License -This project is dual-licensed under both [Apache 2.0](LICENSE-APACHE) and [MIT](LICENSE-MIT) licenses. +Licensed under either of + +- Apache License, Version 2.0 + ([LICENSE-APACHE](LICENSE-APACHE) or ) +- MIT license + ([LICENSE-MIT](LICENSE-MIT) or ) + +at your option + +## Contribution + +Unless you explicitly state otherwise, any contribution intentionally submitted +for inclusion in the work by you, as defined in the Apache-2.0 license, shall be +dual licensed as above, without any additional terms or conditions.