diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml deleted file mode 100644 index 8254d1e..0000000 --- a/.github/workflows/ci.yaml +++ /dev/null @@ -1,40 +0,0 @@ -name: CI - -on: - push: - branches: ["main"] - - pull_request: - branches: ["main"] - -jobs: - lint-format: - runs-on: ubuntu-latest - - name: "Lint-Format" - - strategy: - fail-fast: false - matrix: - python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"] - - defaults: - run: - shell: bash - - steps: - - uses: actions/checkout@v3 - - uses: actions/setup-python@v3 - with: - python-version: ${{ matrix.python-version }} - cache: "pip" - - - name: Setup - run: ./script/setup - - - name: Lint - run: ./script/lint - - - name: Format - run: ./script/format - \ No newline at end of file