Skip to content

CI fixes #105

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

Merged
merged 9 commits into from
May 14, 2023
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Merge branch 'master' into ck-fixci
  • Loading branch information
chayim authored May 14, 2023
commit e09b0edaffc5a29e9da8bac62d273f9247168f9a
30 changes: 3 additions & 27 deletions .github/workflows/integration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,19 +35,7 @@ jobs:
uses: actions/setup-python@v4
with:
python-version: ${{env.basepython}}

# - name: Cache paths
# uses: actions/cache@v2
# with:
# path: |
# .tox
# ~/.virtualenvs
# ~/.cache/pip
# ~/.cache/pypoetry
# key: lint-${{ hashFiles('**/poetry.lock', '**/tox.ini', '**/pyproject.toml') }}-${{ matrix.python-version}}
# restore-keys: |
# lint-${{ hashFiles('**/poetry.lock', '**/tox.ini', '**/pyproject.toml') }}-${{ matrix.python-version}}


- name: prepare the environment
run: |
pip install -U setuptools pip poetry==1.3.2 tox-poetry
Expand All @@ -58,31 +46,19 @@ jobs:

tests:
name: Test on ${{ matrix.platform }} with Python ${{ matrix.python }}
runs-on: ${{ matrix.platform }}
runs-on: ubuntu-latest
env:
ACTIONS_ALLOW_UNSECURE_COMMANDS: true
strategy:
matrix:
platform: ['ubuntu-20.04']
python: ['3.7', '3.8', '3.9', '3.10', '3.11']
fail-fast: false
steps:
- uses: actions/checkout@v3
- name: Setup Python
uses: actions/setup-python@v4
with:
python-version: ${{matrix.python-version}}
# - name: Cache paths
# uses: actions/cache@v2
# with:
# path: |
# .tox
# ~/.virtualenvs
# ~/.cache/pip
# ~/.cache/pypoetry
# key: cover-${{ hashFiles('**/poetry.lock', '**/tox.ini', '**/pyproject.toml') }}-${{ matrix.python-version}}
# restore-keys: |
# cover-${{ hashFiles('**/poetry.lock', '**/tox.ini', '**/pyproject.toml') }}-${{ matrix.python-version}}
python-version: ${{matrix.python}}

- name: Prepare environment
run: |
Expand Down
You are viewing a condensed version of this merge commit. You can view the full changes here.