Skip to content

Commit

Permalink
Release action
Browse files Browse the repository at this point in the history
  • Loading branch information
Mifeet committed Dec 8, 2024
1 parent 18e41f2 commit 2a7a6ec
Showing 1 changed file with 71 additions and 0 deletions.
71 changes: 71 additions & 0 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,71 @@
name: Release
on:
pull_request:

jobs:
tests:
name: 'Unit tests & type check'
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4

- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: '3.10'

- name: Run tests
run: |
set -euo pipefail
pipx install poetry
poetry install --no-interaction
poetry run pytest
poetry run black --check
build:
name: 'Build'
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4

- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: '3.10'

- name: Install dependencies
run: |
pipx install poetry
poetry install --no-interaction
- name: Build package
run: poetry build

- name: Upload artifact
uses: actions/upload-artifact@v4
with:
name: python-package-distributions
path: dist/

release:
name: 'Release'
runs-on: ubuntu-latest
needs:
- build
- tests
environment:
name: pypi
url: https://pypi.org/p/pyfluent-iterables
permissions:
id-token: write
steps:
- name: Download artifact
uses: actions/download-artifact@v4
with:
name: python-package-distributions
path: dist/

# - name: Publish distribution 📦 to PyPI
# uses: pypa/gh-action-pypi-publish@release/v1

0 comments on commit 2a7a6ec

Please sign in to comment.