@@ -13,51 +13,51 @@ concurrency:
13
13
jobs :
14
14
# Make sure commit messages follow the conventional commits convention:
15
15
# 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
-
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/[email protected]
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/[email protected]
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/[email protected]
32
32
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
-
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
+
51
+ # - name: Install Dependencies
52
+ # run: poetry install
53
+ # shell: bash
54
+ # - name: Test with Pytest
55
+ # run: poetry run pytest
56
+ # shell: bash
57
57
release :
58
58
runs-on : ubuntu-latest
59
- needs :
60
- - test
59
+ # needs:
60
+ # - test
61
61
concurrency : release
62
62
if : github.ref == 'refs/heads/release'
63
63
permissions :
0 commit comments