Bump piped from 4d64e35
to 79dcd4c
(#867)
#1109
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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@cd7d8d697e10461458bc61a30d094dc601a8b017 | |
with: | |
submodules: "true" | |
- name: Set up Python 3.9 | |
uses: actions/setup-python@0a5c61591373683505ea898e09a3ea4f39ef2b9c | |
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 |