Skip to content

build(semantic):

build(semantic): #12

Workflow file for this run

# This workflow will install Python dependencies, run tests and lint with a single version of Python
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-python
name: Python application
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
permissions:
contents: write
id-token: write
packages: write
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Repo checkout
uses: actions/checkout@v3
- name: Prepare environment
uses: "./.github/actions/environment"
- name: Running pytest
run: poetry run pytest
env:
TX_API_PROD_KEY: ${{ secrets.TX_API_PROD_KEY }}
TX_API_POD_KEY: ${{ secrets.TX_API_POD_KEY }}
build_linux:
needs: test
runs-on: ubuntu-latest
steps:
- name: Repo checkout
uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Prepare environment
uses: "./.github/actions/environment"
- name: Build wheel package
shell: bash
run: poetry build --format wheel
# - name: Upload wheel package
# uses: actions/upload-artifact@v3
# with:
# name: Python Wheel
# path: ./dist/*.whl
- name: Python Semantic Release
run: poetry run semantic-release publish
env:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}