2021-11-17 17:31:22 +07:00
|
|
|
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]
|
2022-02-19 00:29:05 +07:00
|
|
|
python-version: ['3.9', 'pypy-3.7-v7.x']
|
2021-11-17 17:31:22 +07:00
|
|
|
steps:
|
2023-11-08 17:16:06 +07:00
|
|
|
- uses: actions/checkout@v4
|
2021-11-17 17:31:22 +07:00
|
|
|
- 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]
|
2022-06-30 04:41:39 +07:00
|
|
|
python-version: ['3.9', 'pypy-3.9-v7.x']
|
2021-11-17 17:31:22 +07:00
|
|
|
steps:
|
2023-11-08 17:16:06 +07:00
|
|
|
- uses: actions/checkout@v4
|
2021-11-17 17:31:22 +07:00
|
|
|
- name: Setup Python
|
2023-07-13 19:11:40 +07:00
|
|
|
id: cache-pipenv
|
2021-11-17 17:31:22 +07:00
|
|
|
uses: ./
|
|
|
|
with:
|
|
|
|
python-version: ${{ matrix.python-version }}
|
|
|
|
cache: 'pipenv'
|
2022-01-26 22:54:54 +07:00
|
|
|
- name: Install pipenv
|
2022-06-30 00:09:14 +07:00
|
|
|
run: curl https://raw.githubusercontent.com/pypa/pipenv/master/get-pipenv.py | python
|
2023-07-13 19:11:40 +07:00
|
|
|
- name: Prepare environment
|
2022-06-30 01:16:07 +07:00
|
|
|
shell: pwsh
|
2022-04-04 20:12:24 +07:00
|
|
|
run: |
|
2022-06-30 00:09:14 +07:00
|
|
|
mv ./__tests__/data/Pipfile.lock .
|
|
|
|
mv ./__tests__/data/Pipfile .
|
2023-07-13 19:11:40 +07:00
|
|
|
mv ./__tests__/test-pipenv.py .
|
|
|
|
- name: Install dependencies
|
|
|
|
shell: pwsh
|
|
|
|
if: steps.cache-pipenv.outputs.cache-hit != 'true'
|
|
|
|
run: |
|
2022-06-30 01:28:20 +07:00
|
|
|
if ("${{ matrix.python-version }}" -Match "pypy") {
|
2023-07-13 19:11:40 +07:00
|
|
|
pipenv install --python pypy # --keep-outdated
|
2022-06-30 01:38:02 +07:00
|
|
|
} else {
|
2023-07-13 19:11:40 +07:00
|
|
|
pipenv install --python ${{ matrix.python-version }} # --keep-outdated
|
2022-06-30 01:16:07 +07:00
|
|
|
}
|
2023-07-13 19:11:40 +07:00
|
|
|
- name: Run Python Script
|
|
|
|
run: pipenv run python test-pipenv.py
|
2021-11-17 17:31:22 +07:00
|
|
|
|
2021-11-24 21:50:35 +07:00
|
|
|
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]
|
2022-05-30 20:02:04 +07:00
|
|
|
python-version: ['3.9', 'pypy-3.8']
|
2021-11-24 21:50:35 +07:00
|
|
|
steps:
|
2023-11-08 17:16:06 +07:00
|
|
|
- uses: actions/checkout@v4
|
2021-11-24 21:50:35 +07:00
|
|
|
- name: Install poetry
|
|
|
|
run: pipx install poetry
|
2022-07-25 20:02:06 +07:00
|
|
|
- name: Init pyproject.toml
|
|
|
|
run: mv ./__tests__/data/pyproject.toml .
|
2021-11-24 21:50:35 +07:00
|
|
|
- name: Setup Python
|
|
|
|
uses: ./
|
|
|
|
with:
|
|
|
|
python-version: ${{ matrix.python-version }}
|
|
|
|
cache: 'poetry'
|
|
|
|
- name: Install dependencies
|
2022-07-25 20:02:06 +07:00
|
|
|
run: poetry install
|
2021-11-24 21:50:35 +07:00
|
|
|
|
2021-11-17 17:31:22 +07:00
|
|
|
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]
|
2022-02-19 00:29:05 +07:00
|
|
|
python-version: ['3.9', 'pypy-3.7-v7.x']
|
2021-11-17 17:31:22 +07:00
|
|
|
steps:
|
2023-11-08 17:16:06 +07:00
|
|
|
- uses: actions/checkout@v4
|
2021-11-17 17:31:22 +07:00
|
|
|
- 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]
|
2022-06-30 04:41:39 +07:00
|
|
|
python-version: ['3.9', 'pypy-3.9-v7.x']
|
2021-11-17 17:31:22 +07:00
|
|
|
steps:
|
2023-11-08 17:16:06 +07:00
|
|
|
- uses: actions/checkout@v4
|
2021-11-17 17:31:22 +07:00
|
|
|
- name: Setup Python
|
2023-07-13 19:11:40 +07:00
|
|
|
id: cache-pipenv
|
2021-11-17 17:31:22 +07:00
|
|
|
uses: ./
|
|
|
|
with:
|
|
|
|
python-version: ${{ matrix.python-version }}
|
|
|
|
cache: 'pipenv'
|
2022-04-04 20:12:24 +07:00
|
|
|
cache-dependency-path: '**/pipenv-requirements.txt'
|
2022-01-26 22:54:54 +07:00
|
|
|
- name: Install pipenv
|
2022-06-30 00:09:14 +07:00
|
|
|
run: curl https://raw.githubusercontent.com/pypa/pipenv/master/get-pipenv.py | python
|
2023-07-13 19:11:40 +07:00
|
|
|
- name: Prepare environment
|
2022-06-30 01:16:07 +07:00
|
|
|
shell: pwsh
|
2022-04-04 20:12:24 +07:00
|
|
|
run: |
|
2022-06-30 00:09:14 +07:00
|
|
|
mv ./__tests__/data/Pipfile.lock .
|
|
|
|
mv ./__tests__/data/Pipfile .
|
2023-07-13 19:11:40 +07:00
|
|
|
mv ./__tests__/test-pipenv.py .
|
|
|
|
- name: Install dependencies
|
|
|
|
shell: pwsh
|
|
|
|
if: steps.cache-pipenv.outputs.cache-hit != 'true'
|
|
|
|
run: |
|
2022-06-30 01:28:20 +07:00
|
|
|
if ("${{ matrix.python-version }}" -Match "pypy") {
|
2023-07-13 19:11:40 +07:00
|
|
|
pipenv install --python pypy # --keep-outdated
|
2022-06-30 01:38:02 +07:00
|
|
|
} else {
|
2023-07-13 19:11:40 +07:00
|
|
|
pipenv install --python ${{ matrix.python-version }} # --keep-outdated
|
2023-03-09 17:44:56 +07:00
|
|
|
}
|
2023-07-13 19:11:40 +07:00
|
|
|
- name: Run Python Script
|
|
|
|
run: pipenv run python test-pipenv.py
|