Skip to content

Commit

Permalink
Use poetry in CI
Browse files Browse the repository at this point in the history
  • Loading branch information
yuvadm committed May 17, 2024
1 parent c558120 commit c064224
Showing 1 changed file with 12 additions and 12 deletions.
24 changes: 12 additions & 12 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,18 +7,18 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.12"]
python-version: ["3.8", "3.12"]

steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v3
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install pip and testing tools
run: |
python -m pip install --upgrade pipenv
pipenv install -d
- name: Test build
run: |
pipenv run build
- name: Run image
uses: abatilo/actions-poetry@v2
with:
poetry-version: ${{ matrix.poetry-version }}
- name: Poetry install
run: poetry install
- name: Run build
run: poetry run build

0 comments on commit c064224

Please sign in to comment.