Skip to content

Keep GitHub Actions up to date with GitHub's Dependabot #33

Keep GitHub Actions up to date with GitHub's Dependabot

Keep GitHub Actions up to date with GitHub's Dependabot #33

Workflow file for this run

name: CI
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
workflow_dispatch:
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-20.04]
python-version: ['3.6','3.7','3.8', '3.9','3.10', '3.11-dev']
steps:
- uses: actions/checkout@v3
- name: setup python
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install Dependencies
run: pip install networkx>=2 pytype
- name: Type-Check
if: matrix.python-version != '3.11-dev'
run: pytype -j auto
- name: Run Tests
run: ./tests/run_all.sh