Skip to content

Remove 3.8, and 3.9 support #9

Remove 3.8, and 3.9 support

Remove 3.8, and 3.9 support #9

Workflow file for this run

on:
push:
tags:
- '*'
name: Release
jobs:
testing:
runs-on: ${{ matrix.os }}
strategy:
matrix:
python-version: [ "3.10" ]
os: [ "ubuntu-latest" ]
name: Release
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Setup PDM
uses: pdm-project/setup-pdm@v3
with:
python-version: ${{ matrix.python-version }}
cache: true
- name: Install dependencies
run: pdm install -v && pdm info
- name: Publish on git tags
run: make publish
env:
PYPI_UNAME: __token__
PYPI_TOKEN: ${{ secrets.PYPI_TOKEN }}