diff --git a/.gitea/workflows/check.yml b/.gitea/workflows/check.yml new file mode 100644 index 0000000..3a51f8b --- /dev/null +++ b/.gitea/workflows/check.yml @@ -0,0 +1,17 @@ +name: Clippy + +on: + push: + tags: + - '*' + +env: + RUSTFLAGS: "-Dwarnings" + +jobs: + clippy: + runs-on: any + steps: + - uses: actions/checkout@v3 + - name: Run Clippy + run: cargo clippy --all-targets --all-features diff --git a/.gitmodules b/.gitmodules deleted file mode 100644 index e69de29..0000000