From fd50d22ad4c1a3918878dba5d7c038f24b6fbdc3 Mon Sep 17 00:00:00 2001 From: Basti Lathe Date: Thu, 22 May 2025 04:31:25 +0200 Subject: [PATCH] polishing --- .../ISSUE_TEMPLATE/bug_report.md | 0 .../ISSUE_TEMPLATE/feature_request.md | 0 .gitea/workflows/rust.yaml | 31 ------------------- {.github => .gitea}/workflows/rust.yml | 0 4 files changed, 31 deletions(-) rename {.github => .gitea}/ISSUE_TEMPLATE/bug_report.md (100%) rename {.github => .gitea}/ISSUE_TEMPLATE/feature_request.md (100%) delete mode 100644 .gitea/workflows/rust.yaml rename {.github => .gitea}/workflows/rust.yml (100%) diff --git a/.github/ISSUE_TEMPLATE/bug_report.md b/.gitea/ISSUE_TEMPLATE/bug_report.md similarity index 100% rename from .github/ISSUE_TEMPLATE/bug_report.md rename to .gitea/ISSUE_TEMPLATE/bug_report.md diff --git a/.github/ISSUE_TEMPLATE/feature_request.md b/.gitea/ISSUE_TEMPLATE/feature_request.md similarity index 100% rename from .github/ISSUE_TEMPLATE/feature_request.md rename to .gitea/ISSUE_TEMPLATE/feature_request.md diff --git a/.gitea/workflows/rust.yaml b/.gitea/workflows/rust.yaml deleted file mode 100644 index f656169..0000000 --- a/.gitea/workflows/rust.yaml +++ /dev/null @@ -1,31 +0,0 @@ -name: Rust - -on: - push: - pull_request: - -jobs: - build: - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v2 - - uses: actions-rs/toolchain@v1 - with: - toolchain: stable - profile: minimal - override: true - components: rustfmt, clippy - - uses: actions-rs/cargo@v1 - name: Check format - with: - command: fmt - args: --all -- --check - - uses: actions-rs/cargo@v1 - name: Run clippy - with: - command: clippy - args: --all-targets --locked -- -D warnings - - uses: actions-rs/cargo@v1 - name: Run tests - with: - command: test diff --git a/.github/workflows/rust.yml b/.gitea/workflows/rust.yml similarity index 100% rename from .github/workflows/rust.yml rename to .gitea/workflows/rust.yml