Permalink
Cannot retrieve contributors at this time
119 lines (113 sloc)
3.38 KB
Name already in use
A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
setup-python/.github/workflows/e2e-cache.yml
View runs Go to fileThis commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
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: e2e-cache | |
on: | |
pull_request: | |
paths-ignore: | |
- '**.md' | |
push: | |
branches: | |
- main | |
- releases/* | |
paths-ignore: | |
- '**.md' | |
permissions: | |
contents: read | |
jobs: | |
python-pip-dependencies-caching: | |
name: Test pip (Python ${{ matrix.python-version}}, ${{ matrix.os }}) | |
runs-on: ${{ matrix.os }} | |
strategy: | |
fail-fast: false | |
matrix: | |
os: [ubuntu-latest, windows-latest, macos-latest] | |
python-version: ['3.9', 'pypy-3.7-v7.x'] | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Setup Python | |
uses: ./ | |
with: | |
python-version: ${{ matrix.python-version }} | |
cache: 'pip' | |
- name: Install dependencies | |
run: pip install numpy pandas requests | |
python-pipenv-dependencies-caching: | |
name: Test pipenv (Python ${{ matrix.python-version}}, ${{ matrix.os }}) | |
runs-on: ${{ matrix.os }} | |
strategy: | |
fail-fast: false | |
matrix: | |
os: [ubuntu-latest, windows-latest, macos-latest] | |
python-version: ['3.9', 'pypy-3.7-v7.x'] | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Setup Python | |
uses: ./ | |
with: | |
python-version: ${{ matrix.python-version }} | |
cache: 'pipenv' | |
- name: Install pipenv | |
run: pipx install pipenv | |
- name: Install dependencies | |
run: | | |
cd __tests__/data | |
pipenv install --verbose | |
python-poetry-dependencies-caching: | |
name: Test poetry (Python ${{ matrix.python-version}}, ${{ matrix.os }}) | |
runs-on: ${{ matrix.os }} | |
strategy: | |
fail-fast: false | |
matrix: | |
os: [ubuntu-latest, windows-latest, macos-latest] | |
python-version: ['3.9', 'pypy-3.7-v7.x'] | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Install poetry | |
run: pipx install poetry | |
- name: Setup Python | |
uses: ./ | |
with: | |
python-version: ${{ matrix.python-version }} | |
cache: 'poetry' | |
- name: Init pyproject.toml | |
run: poetry init -n | |
- name: Install dependencies | |
run: poetry add flake8 | |
python-pip-dependencies-caching-path: | |
name: Test pip (Python ${{ matrix.python-version}}, ${{ matrix.os }}) | |
runs-on: ${{ matrix.os }} | |
strategy: | |
fail-fast: false | |
matrix: | |
os: [ubuntu-latest, windows-latest, macos-latest] | |
python-version: ['3.9', 'pypy-3.7-v7.x'] | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Setup Python | |
uses: ./ | |
with: | |
python-version: ${{ matrix.python-version }} | |
cache: 'pip' | |
cache-dependency-path: __tests__/data/requirements.txt | |
- name: Install dependencies | |
run: pip install numpy pandas requests | |
python-pipenv-dependencies-caching-path: | |
name: Test pipenv (Python ${{ matrix.python-version}}, ${{ matrix.os }}) | |
runs-on: ${{ matrix.os }} | |
strategy: | |
fail-fast: false | |
matrix: | |
os: [ubuntu-latest, windows-latest, macos-latest] | |
python-version: ['3.9', 'pypy-3.7-v7.x'] | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Setup Python | |
uses: ./ | |
with: | |
python-version: ${{ matrix.python-version }} | |
cache: 'pipenv' | |
cache-dependency-path: '**/pipenv-requirements.txt' | |
- name: Install pipenv | |
run: pipx install pipenv | |
- name: Install dependencies | |
run: | | |
cd __tests__/data | |
pipenv install --verbose |