Skip to content

Commit

Permalink
eliminate make from gh actions
Browse files Browse the repository at this point in the history
  • Loading branch information
okozachenko1203 committed Aug 5, 2024
1 parent 021daa6 commit 349e36b
Showing 1 changed file with 7 additions and 5 deletions.
12 changes: 7 additions & 5 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,16 +30,15 @@ jobs:
uses: actions/checkout@v3

- name: Install Poetry
run: make poetry
run: pipx install poetry

- name: Setup Python
uses: actions/setup-python@v4
with:
cache: poetry
python-version: ${{ matrix.python-version }}

- name: Build package
run: make build
run: poetry build

install:
runs-on: ${{ matrix.runs-on }}
Expand All @@ -60,8 +59,11 @@ jobs:
- name: Checkout project
uses: actions/checkout@v3

- name: Checkout project
uses: actions/checkout@v3

- name: Install Poetry
run: make poetry
run: pipx install poetry

- name: Setup Python
uses: actions/setup-python@v4
Expand All @@ -70,7 +72,7 @@ jobs:
python-version: ${{ matrix.python-version }}

- name: Build package
run: make build
run: poetry build

- name: Install package using constraints
run: pip install --constraint https://releases.openstack.org/constraints/upper/${{ matrix.openstack-version }} ./dist/*.whl

0 comments on commit 349e36b

Please sign in to comment.