| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
1 parent 52636cf commit 280924f
75 files changed
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -0,0 +1,93 @@ | |||
| 1 | + name: e2e-cache | ||
| 2 | + | ||
| 3 | + on: | ||
| 4 | + pull_request: | ||
| 5 | + paths-ignore: | ||
| 6 | + - '**.md' | ||
| 7 | + push: | ||
| 8 | + branches: | ||
| 9 | + - main | ||
| 10 | + - releases/* | ||
| 11 | + paths-ignore: | ||
| 12 | + - '**.md' | ||
| 13 | + | ||
| 14 | + permissions: | ||
| 15 | + contents: read | ||
| 16 | + jobs: | ||
| 17 | + python-pip-dependencies-caching: | ||
| 18 | + name: Test pip (Python ${{ matrix.python-version}}, ${{ matrix.os }}) | ||
| 19 | + runs-on: ${{ matrix.os }} | ||
| 20 | + strategy: | ||
| 21 | + fail-fast: false | ||
| 22 | + matrix: | ||
| 23 | + os: [ubuntu-latest, windows-latest, macos-latest] | ||
| 24 | + python-version: ['3.7', '3.8', '3.9', 'pypy-3.7-v7.3.5', 'pypy-3.7-v7.x'] | ||
| 25 | + steps: | ||
| 26 | + - uses: actions/checkout@v2 | ||
| 27 | + - name: Setup Python | ||
| 28 | + uses: ./ | ||
| 29 | + with: | ||
| 30 | + python-version: ${{ matrix.python-version }} | ||
| 31 | + cache: 'pip' | ||
| 32 | + - name: Install dependencies | ||
| 33 | + run: pip install numpy pandas requests | ||
| 34 | + | ||
| 35 | + python-pipenv-dependencies-caching: | ||
| 36 | + name: Test pipenv (Python ${{ matrix.python-version}}, ${{ matrix.os }}) | ||
| 37 | + runs-on: ${{ matrix.os }} | ||
| 38 | + strategy: | ||
| 39 | + fail-fast: false | ||
| 40 | + matrix: | ||
| 41 | + os: [ubuntu-latest, windows-latest, macos-latest] | ||
| 42 | + python-version: ['3.7', '3.8', '3.9', 'pypy-3.7-v7.3.5', 'pypy-3.7-v7.x'] | ||
| 43 | + steps: | ||
| 44 | + - uses: actions/checkout@v2 | ||
| 45 | + - name: Install pipenv | ||
| 46 | + run: pipx install pipenv | ||
| 47 | + - name: Setup Python | ||
| 48 | + uses: ./ | ||
| 49 | + with: | ||
| 50 | + python-version: ${{ matrix.python-version }} | ||
| 51 | + cache: 'pipenv' | ||
| 52 | + - name: Install dependencies | ||
| 53 | + run: pipenv install flake8 | ||
| 54 | + | ||
| 55 | + python-pip-dependencies-caching-path: | ||
| 56 | + name: Test pip (Python ${{ matrix.python-version}}, ${{ matrix.os }}) | ||
| 57 | + runs-on: ${{ matrix.os }} | ||
| 58 | + strategy: | ||
| 59 | + fail-fast: false | ||
| 60 | + matrix: | ||
| 61 | + os: [ubuntu-latest, windows-latest, macos-latest] | ||
| 62 | + python-version: ['3.7', '3.8', '3.9', 'pypy-3.7-v7.3.5', 'pypy-3.7-v7.x'] | ||
| 63 | + steps: | ||
| 64 | + - uses: actions/checkout@v2 | ||
| 65 | + - name: Setup Python | ||
| 66 | + uses: ./ | ||
| 67 | + with: | ||
| 68 | + python-version: ${{ matrix.python-version }} | ||
| 69 | + cache: 'pip' | ||
| 70 | + cache-dependency-path: __tests__/data/requirements.txt | ||
| 71 | + - name: Install dependencies | ||
| 72 | + run: pip install numpy pandas requests | ||
| 73 | + | ||
| 74 | + python-pipenv-dependencies-caching-path: | ||
| 75 | + name: Test pipenv (Python ${{ matrix.python-version}}, ${{ matrix.os }}) | ||
| 76 | + runs-on: ${{ matrix.os }} | ||
| 77 | + strategy: | ||
| 78 | + fail-fast: false | ||
| 79 | + matrix: | ||
| 80 | + os: [ubuntu-latest, windows-latest, macos-latest] | ||
| 81 | + python-version: ['3.7', '3.8', '3.9', 'pypy-3.7-v7.3.5', 'pypy-3.7-v7.x'] | ||
| 82 | + steps: | ||
| 83 | + - uses: actions/checkout@v2 | ||
| 84 | + - name: Install pipenv | ||
| 85 | + run: pipx install pipenv | ||
| 86 | + - name: Setup Python | ||
| 87 | + uses: ./ | ||
| 88 | + with: | ||
| 89 | + python-version: ${{ matrix.python-version }} | ||
| 90 | + cache: 'pipenv' | ||
| 91 | + cache-dependency-path: '**/requirements-linux.txt' | ||
| 92 | + - name: Install dependencies | ||
| 93 | + run: pipenv install flake8 | ||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -9,6 +9,7 @@ allowed: | |||
| 9 | 9 | - mit | |
| 10 | 10 | - cc0-1.0 | |
| 11 | 11 | - unlicense | |
| 12 | + - 0bsd | ||
| 12 | 13 | ||
| 13 | 14 | reviewed: | |
| 14 | 15 | npm: | |
| Back | FazBrowse Home | New Git URL |
0 commit comments