@@ -79,49 +79,23 @@ jobs:
79
79
github_token : ${{ secrets.GITHUB_TOKEN }}
80
80
junit_files : ./**/test-results.xml
81
81
82
- # code-quality:
83
- # runs-on: ubuntu-latest
84
-
85
- # steps:
86
- # - uses: actions/checkout@v3
87
-
88
- # - name: setup python environment
89
- # id: setup-python
90
- # uses: actions/setup-python@v4
91
- # with:
92
- # python-version: "3.8"
93
-
94
- # - name: install Poetry
95
- # uses: snok/install-poetry@v1
96
- # with:
97
- # virtualenvs-create: true
98
- # virtualenvs-in-project: true
99
-
100
- # - name: Load cached venv
101
- # id: cached-poetry-dependencies
102
- # uses: actions/cache@v3
103
- # with:
104
- # path: .venv
105
- # key: venv-${{ runner.os }}-${{ steps.setup-python.outputs.python-version }}-${{ hashFiles('**/poetry.lock') }}
106
-
107
- # - name: Install dependencies
108
- # if: steps.cached-poetry-dependencies.outputs.cache-hit != 'true'
109
- # run: poetry install --no-interaction --no-root
110
-
111
- # - name: install robotcode
112
- # run: poetry install --no-interaction
82
+ code-quality :
83
+ runs-on : ubuntu-latest
113
84
114
- # - run: poetry run isort --check --diff .
115
- # if: always()
85
+ steps :
86
+ - uses : actions/checkout@v3
116
87
117
- # - run: poetry run black --check --diff .
118
- # if: always()
88
+ - name : setup python environment
89
+ id : setup-python
90
+ uses : actions/setup-python@v4
91
+ with :
92
+ python-version : " 3.8"
119
93
120
- # - run: poetry run flake8 .
121
- # if: always()
94
+ - run : hatch run lint:style
95
+ if : always()
122
96
123
- # - run: poetry run mypy .
124
- # if: always()
97
+ - run : hatch run lint:typing
98
+ if : always()
125
99
126
100
# package:
127
101
# needs: [code-quality, test]
0 commit comments