Skip to content
This repository has been archived by the owner on Dec 10, 2024. It is now read-only.

Bump twine from 5.1.1 to 6.0.1 #237

Bump twine from 5.1.1 to 6.0.1

Bump twine from 5.1.1 to 6.0.1 #237

Workflow file for this run

name: 'pull request'
on:
pull_request
jobs:
build:
name: 'pull request'
runs-on: ubuntu-latest
steps:
- name: checkout
uses: actions/checkout@master
- name: install dependencies
run: |
python3 -m pip install --upgrade pip build
pip3 install -r requirements.txt
pip3 install -r requirements-dev.txt
shell: bash
- name: lint
run: |
flake8
shell: bash
- name: build
run: python3 -m build --sdist --wheel
shell: bash
- name: test
run: |
pytest
shell: bash