diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 8aef19f..90fac33 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -13,51 +13,51 @@ concurrency: jobs: # Make sure commit messages follow the conventional commits convention: # https://www.conventionalcommits.org - commitlint: - name: Lint Commit Messages - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v4 - with: - fetch-depth: 0 - - uses: wagoid/commitlint-github-action@v5.4.5 - lint: - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v4 - - uses: actions/setup-python@v5 - with: - python-version: "3.11" - - uses: pre-commit/action@v3.0.0 + # commitlint: + # name: Lint Commit Messages + # runs-on: ubuntu-latest + # steps: + # - uses: actions/checkout@v4 + # with: + # fetch-depth: 0 + # - uses: wagoid/commitlint-github-action@v5.4.5 + # lint: + # runs-on: ubuntu-latest + # steps: + # - uses: actions/checkout@v4 + # - uses: actions/setup-python@v5 + # with: + # python-version: "3.11" + # - uses: pre-commit/action@v3.0.0 - test: - strategy: - fail-fast: false - matrix: - python-version: - - "3.11" - os: - - ubuntu-latest - - windows-latest - - macOS-latest - runs-on: ${{ matrix.os }} - steps: - - uses: actions/checkout@v4 - - name: Set up Python - uses: actions/setup-python@v5 - with: - python-version: ${{ matrix.python-version }} - - uses: snok/install-poetry@v1.4.1 - - name: Install Dependencies - run: poetry install - shell: bash - - name: Test with Pytest - run: poetry run pytest - shell: bash + # test: + # strategy: + # fail-fast: false + # matrix: + # python-version: + # - "3.11" + # os: + # - ubuntu-latest + # - windows-latest + # - macOS-latest + # runs-on: ${{ matrix.os }} + # steps: + # - uses: actions/checkout@v4 + # - name: Set up Python + # uses: actions/setup-python@v5 + # with: + # python-version: ${{ matrix.python-version }} + # - uses: snok/install-poetry@v1.4.1 + # - name: Install Dependencies + # run: poetry install + # shell: bash + # - name: Test with Pytest + # run: poetry run pytest + # shell: bash release: runs-on: ubuntu-latest - needs: - - test + # needs: + # - test concurrency: release if: github.ref == 'refs/heads/release' permissions: