Uh oh!
There was an error while loading. Please reload this page.
- Notifications
You must be signed in to change notification settings - Fork 735
Implementation of python's caching#266
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Uh oh!
There was an error while loading. Please reload this page.
Changes from all commits
952fef3c98dcdeb321c7b0860a2d3a7c99c73eda7c87683fbf3bb76807c09af1918fc7f823876aaeea74204896dFile filter
Filter by extension
Conversations
Uh oh!
There was an error while loading. Please reload this page.
Jump to
Uh oh!
There was an error while loading. Please reload this page.
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,93 @@ | ||
| 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.7', '3.8', '3.9', 'pypy-3.7-v7.3.5', 'pypy-3.7-v7.x'] | ||
| steps: | ||
| - uses: actions/checkout@v2 | ||
| - 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.7', '3.8', '3.9', 'pypy-3.7-v7.3.5', 'pypy-3.7-v7.x'] | ||
| steps: | ||
| - uses: actions/checkout@v2 | ||
| - name: Install pipenv | ||
| run: pipx install pipenv | ||
| - name: Setup Python | ||
| uses: ./ | ||
| with: | ||
| python-version: ${{ matrix.python-version }} | ||
| cache: 'pipenv' | ||
| - name: Install dependencies | ||
| run: pipenv install 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.7', '3.8', '3.9', 'pypy-3.7-v7.3.5', 'pypy-3.7-v7.x'] | ||
| steps: | ||
| - uses: actions/checkout@v2 | ||
| - 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.7', '3.8', '3.9', 'pypy-3.7-v7.3.5', 'pypy-3.7-v7.x'] | ||
| steps: | ||
| - uses: actions/checkout@v2 | ||
| - name: Install pipenv | ||
| run: pipx install pipenv | ||
| - name: Setup Python | ||
| uses: ./ | ||
| with: | ||
| python-version: ${{ matrix.python-version }} | ||
| cache: 'pipenv' | ||
| cache-dependency-path: '**/requirements-linux.txt' | ||
| - name: Install dependencies | ||
| run: pipenv install flake8 | ||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -9,6 +9,7 @@ allowed: | ||
| - mit | ||
| - cc0-1.0 | ||
| - unlicense | ||
| - 0bsd | ||
| reviewed: | ||
| npm: | ||
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Uh oh!
There was an error while loading. Please reload this page.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Uh oh!
There was an error while loading. Please reload this page.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Uh oh!
There was an error while loading. Please reload this page.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Uh oh!
There was an error while loading. Please reload this page.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Uh oh!
There was an error while loading. Please reload this page.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Uh oh!
There was an error while loading. Please reload this page.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Uh oh!
There was an error while loading. Please reload this page.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Uh oh!
There was an error while loading. Please reload this page.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.