Skip to content

Commit

Permalink
Use them
Browse files Browse the repository at this point in the history
  • Loading branch information
mpharrigan committed Aug 4, 2023
1 parent 9991383 commit f4393b5
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@ jobs:
with:
python-version: '3.10'
architecture: 'x64'
- name: Install yapf
run: pip install -r dev_tools/requirements/format.env.txt
- name: Install requirements
run: pip install -r dev_tools/requirements/envs/format.env.txt
- name: Format
run: check/format-incremental
mypy:
Expand All @@ -27,8 +27,8 @@ jobs:
with:
python-version: '3.10'
architecture: 'x64'
- name: Install mypy
run: pip install -r dev_tools/requirements/mypy.env.txt
- name: Install requirements
run: pip install -r dev_tools/requirements/envs/mypy.env.txt
- name: Type check
run: check/mypy
lint:
Expand All @@ -40,8 +40,8 @@ jobs:
with:
python-version: '3.10'
architecture: 'x64'
- name: Install pylint
run: pip install -r dev_tools/requirements/pylint.env.txt
- name: Install requirements
run: pip install -r dev_tools/requirements/envs/pylint.env.txt
- name: Lint
run: check/pylint
pytest:
Expand All @@ -66,7 +66,7 @@ jobs:
python-version: ${{ matrix.python-version }}
- name: Install requirements
run: |
pip install -r dev_tools/requirements/pytest.env.txt
pip install -r dev_tools/requirements/envs/pytest.env.txt
pip install cirq-core${{matrix.cirq-version}}
- name: Pytest check
run: check/pytest
Expand Down

0 comments on commit f4393b5

Please sign in to comment.