From 7263587cb64f6b9881357157e051f1ef028b2bc8 Mon Sep 17 00:00:00 2001 From: Gahow Wang Date: Wed, 6 May 2026 22:56:53 +0800 Subject: [PATCH] clean: ci --- .github/workflows/ci.yml | 25 ------------------------- 1 file changed, 25 deletions(-) delete mode 100644 .github/workflows/ci.yml diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml deleted file mode 100644 index 0cdc750..0000000 --- a/.github/workflows/ci.yml +++ /dev/null @@ -1,25 +0,0 @@ -name: CI - -on: - pull_request: - push: - branches: - - main - -jobs: - test: - runs-on: ubuntu-latest - strategy: - matrix: - python-version: - - "3.11" - - "3.12" - steps: - - uses: actions/checkout@v4 - - uses: actions/setup-python@v5 - with: - python-version: ${{ matrix.python-version }} - - name: Install - run: python -m pip install -e . - - name: Test - run: python -m unittest discover -s tests -v