Skip to content
This repository was archived by the owner on Aug 18, 2025. It is now read-only.

renaming

renaming #172

Workflow file for this run

on:
push:
branches:
- main
jobs:
build:
permissions:
actions: read
contents: write
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: actions/setup-python@v5
with:
python-version: "3.7" # Version range or exact version of a Python version to use, using SemVer's version range syntax
architecture: "x64" # optional x64 or x86. Defaults to x64 if not specified
name: Python 3.7 installation
- name: install requirements
run: pip install -r requirements.txt
- uses: jakebailey/pyright-action@v1
- name: Publish semantic release 📦 to PyPI
if: ${{ github.ref == 'refs/heads/main' }}
uses: relekang/python-semantic-release@master
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
pypi_token: ${{ secrets.PYPI_TOKEN }}