Skip to content

Bump JamesIves/github-pages-deploy-action from 4.6.8 to 4.6.9 #777

Bump JamesIves/github-pages-deploy-action from 4.6.8 to 4.6.9

Bump JamesIves/github-pages-deploy-action from 4.6.8 to 4.6.9 #777

Workflow file for this run

name: Type check
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:
type-check:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683
with:
submodules: "true"
- name: Set up Python 3.9
uses: actions/setup-python@0b93645e9fea7318ecaed2b359559ac225c90a2b
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 type checker
run: python -m nox -s type-check