Skip to content

Bump pypa/gh-action-pypi-publish from 1.10.3 to 1.12.2 #1401

Bump pypa/gh-action-pypi-publish from 1.10.3 to 1.12.2

Bump pypa/gh-action-pypi-publish from 1.10.3 to 1.12.2 #1401

Workflow file for this run

name: Verify type-completeness
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
on:
push:
branches:
- master
pull_request:
branches:
- master
schedule:
- cron: "0 12 * * 6"
workflow_dispatch:
jobs:
verify-types:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@eef61447b9ff4aafe5dcd4e0bbf5d482be7e7871
with:
submodules: "true"
- name: Set up Python 3.9
uses: actions/setup-python@f677139bbe7f9c59b41e40162b753c062f5d49a3
with:
python-version: "3.9"
- name: install prerequisites
run: |
python -m pip install --upgrade pip wheel
python -m pip install -r ./piped/python/base-requirements/nox.txt
- name: Run verify types
run: python -m nox -s verify-types