Skip to content

Bump ruff from 0.2.2 to 0.3.7 #51

Bump ruff from 0.2.2 to 0.3.7

Bump ruff from 0.2.2 to 0.3.7 #51

Workflow file for this run

name: CD
on:
push:
branches:
- main
pull_request:
types: [closed]
branches:
- main
jobs:
build-n-publish:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Python 3.10
uses: actions/setup-python@v2
with:
python-version: '3.10'
- name: Install Dependencies
run: |
python -m pip install --upgrade pip
pip install tox
- name: Test With Tox
run: tox -e pytest
- name: Build and Publish
env:
TWINE_USERNAME: __token__
TWINE_PASSWORD: ${{ secrets.PYPI_API_TOKEN }}
run: |
tox -r -e build,publish