Use docker to pin dependencies #561
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Continuous Integration | |
on: [pull_request] | |
jobs: | |
format: | |
name: Format check | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
with: | |
fetch-depth: 0 | |
- uses: actions/setup-python@v1 | |
with: | |
python-version: '3.10' | |
architecture: 'x64' | |
- name: Install requirements | |
run: pip install -r dev_tools/requirements/envs/format.env.txt | |
- name: Format | |
run: check/format-incremental | |
mypy: | |
name: Type check | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: actions/setup-python@v1 | |
with: | |
python-version: '3.10' | |
architecture: 'x64' | |
- name: Install requirements | |
run: pip install -r dev_tools/requirements/envs/mypy.env.txt | |
- name: Type check | |
run: check/mypy | |
pylint: | |
name: Lint check | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: actions/setup-python@v1 | |
with: | |
python-version: '3.10' | |
architecture: 'x64' | |
- name: Install requirements | |
run: pip install -r dev_tools/requirements/envs/pylint.env.txt | |
- name: Lint | |
run: check/pylint | |
pytest-minimum: | |
name: Pytest | |
runs-on: ubuntu-18.04 | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: actions/setup-python@v2 | |
with: | |
python-version: 3.8 | |
- name: Install requirements | |
run: | | |
pip install -r dev_tools/requirements/envs/pytest.env.txt | |
pip install cirq-core~=0.15.0 | |
- name: Pytest check | |
run: check/pytest | |
shell: bash | |
pytest: | |
name: Pytest | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
os: [ ubuntu-latest, macos-latest, windows-latest ] | |
fail-fast: false | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: actions/setup-python@v2 | |
with: | |
python-version: '3.10' | |
- name: Install requirements | |
run: | | |
pip install -r dev_tools/requirements/envs/pytest.env.txt | |
- name: Pytest check | |
run: check/pytest | |
shell: bash | |
pytest-with-optional: | |
name: Pytest with optional | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
os: [ubuntu-latest, macos-latest] | |
fail-fast: false | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: actions/setup-python@v2 | |
with: | |
python-version: '3.10' | |
- name: Install requirements | |
run: | | |
pip install -r dev_tools/requirements/envs/pytest-with-optional.env.txt | |
- name: Pytest check | |
run: check/pytest -m 'not slow' src/openfermion/resource_estimates | |
shell: bash | |
coverage: | |
name: Coverage check | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
with: | |
fetch-depth: 0 | |
- uses: actions/setup-python@v1 | |
with: | |
python-version: '3.10' | |
architecture: 'x64' | |
- name: Install requirements | |
run: pip install -r dev_tools/requirements/envs/pytest.env.txt | |
- name: Coverage check | |
run: check/pytest-and-incremental-coverage |