Merge pull request #839 from fractal-analytics-platform/poetry-update #746
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Build package | |
on: | |
push: | |
branches: ["main"] | |
pull_request: | |
branches: ["main"] | |
jobs: | |
build: | |
runs-on: ubuntu-22.04 | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
- name: "Set up Python 3.10" | |
uses: actions/setup-python@v5 | |
with: | |
python-version: "3.10" | |
- name: "Install poetry 1.8.2" | |
run: curl -sSL https://install.python-poetry.org | python3 - --version 1.8.2 | |
- name: Build package | |
run: poetry build |