We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents fe329eb + d7bf27a commit cbe8d05Copy full SHA for cbe8d05
.github/workflows/ci.yml
@@ -20,22 +20,18 @@ on:
20
jobs:
21
py-checks:
22
runs-on: ubuntu-latest
23
+ container:
24
+ image: python:3.8
25
+ options: --user root
26
steps:
27
- uses: actions/checkout@v4
28
with:
29
fetch-depth: 0
30
- - name: Set up Python
- uses: actions/setup-python@v5
- with:
31
- python-version: '3.8'
32
-
33
- name: Install dependencies
34
run: |
35
python -m pip install --upgrade pip
36
- pip install flake8 yapf pep8-naming
37
- pip3 install -r pip_requirements.txt
38
- pip3 install --index-url https://test.pypi.org/simple/ hip-python
+ pip install -r pip_requirements.txt
39
40
- name: Get changed Python files under mlir/
41
id: changes
0 commit comments