From 12350722d3c4e5250f690916226c889dfd72babe Mon Sep 17 00:00:00 2001 From: Story Crater Bot <19826264+Riotpiaole@users.noreply.github.com> Date: Sun, 23 Aug 2026 16:26:32 -0700 Subject: [PATCH] Clean: completely remove .gitea and .github directories from tracking --- .gitea/workflows/ci.yaml | 26 -------------------------- .github/workflows/ci.yml | 28 ---------------------------- 2 files changed, 54 deletions(-) delete mode 100644 .gitea/workflows/ci.yaml delete mode 100644 .github/workflows/ci.yml diff --git a/.gitea/workflows/ci.yaml b/.gitea/workflows/ci.yaml deleted file mode 100644 index 587cca4..0000000 --- a/.gitea/workflows/ci.yaml +++ /dev/null @@ -1,26 +0,0 @@ -name: ci - -on: - push: - branches: [main] - pull_request: - -jobs: - markdown: - runs-on: docker - container: - image: alpine:latest - steps: - - name: Checkout code - run: | - apk add --no-cache git - git init - git remote add origin https://forgejo.riotpiao.com/rock/poimen-memory.git - git fetch origin ${{ github.ref_name }} --depth=1 - git checkout FETCH_HEAD - - - name: Check markdown files exist - run: | - test -f DESIGN.md - test -f README.md - echo "✓ Documentation structure valid" diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml deleted file mode 100644 index 6ebd0ab..0000000 --- a/.github/workflows/ci.yml +++ /dev/null @@ -1,28 +0,0 @@ -name: CI - -on: - push: - branches: [ main, develop ] - pull_request: - branches: [ main, develop ] - -env: - CARGO_TERM_COLOR: always - -jobs: - build: - name: Build and Lint - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v4 - - uses: dtolnay/rust-toolchain@stable - - uses: Swatinem/rust-cache@v2 - - - name: Build workspace - run: cargo build --workspace - - - name: Run clippy - run: cargo clippy --workspace -- -D warnings - - - name: Run tests - run: cargo test --test it_workspace