@@ -13,51 +13,51 @@ concurrency:
1313jobs :
1414 # Make sure commit messages follow the conventional commits convention:
1515 # https://www.conventionalcommits.org
16- commitlint :
17- name : Lint Commit Messages
18- runs-on : ubuntu-latest
19- steps :
20- - uses : actions/checkout@v4
21- with :
22- fetch-depth : 0
23- - uses : wagoid/commitlint-github-action@v5.4.5
24- lint :
25- runs-on : ubuntu-latest
26- steps :
27- - uses : actions/checkout@v4
28- - uses : actions/setup-python@v5
29- with :
30- python-version : " 3.11"
31- - uses : pre-commit/action@v3.0.0
16+ # commitlint:
17+ # name: Lint Commit Messages
18+ # runs-on: ubuntu-latest
19+ # steps:
20+ # - uses: actions/checkout@v4
21+ # with:
22+ # fetch-depth: 0
23+ # - uses: wagoid/commitlint-github-action@v5.4.5
24+ # lint:
25+ # runs-on: ubuntu-latest
26+ # steps:
27+ # - uses: actions/checkout@v4
28+ # - uses: actions/setup-python@v5
29+ # with:
30+ # python-version: "3.11"
31+ # - uses: pre-commit/action@v3.0.0
3232
33- test :
34- strategy :
35- fail-fast : false
36- matrix :
37- python-version :
38- - " 3.11"
39- os :
40- - ubuntu-latest
41- - windows-latest
42- - macOS-latest
43- runs-on : ${{ matrix.os }}
44- steps :
45- - uses : actions/checkout@v4
46- - name : Set up Python
47- uses : actions/setup-python@v5
48- with :
49- python-version : ${{ matrix.python-version }}
50- - uses : snok/install-poetry@v1.4.1
51- - name : Install Dependencies
52- run : poetry install
53- shell : bash
54- - name : Test with Pytest
55- run : poetry run pytest
56- shell : bash
33+ # test:
34+ # strategy:
35+ # fail-fast: false
36+ # matrix:
37+ # python-version:
38+ # - "3.11"
39+ # os:
40+ # - ubuntu-latest
41+ # - windows-latest
42+ # - macOS-latest
43+ # runs-on: ${{ matrix.os }}
44+ # steps:
45+ # - uses: actions/checkout@v4
46+ # - name: Set up Python
47+ # uses: actions/setup-python@v5
48+ # with:
49+ # python-version: ${{ matrix.python-version }}
50+ # - uses: snok/install-poetry@v1.4.1
51+ # - name: Install Dependencies
52+ # run: poetry install
53+ # shell: bash
54+ # - name: Test with Pytest
55+ # run: poetry run pytest
56+ # shell: bash
5757 release :
5858 runs-on : ubuntu-latest
59- needs :
60- - test
59+ # needs:
60+ # - test
6161 concurrency : release
6262 if : github.ref == 'refs/heads/release'
6363 permissions :
0 commit comments