Skip to content

Un-skips the test that checks if building an invalid type throws a ValueError #179

Un-skips the test that checks if building an invalid type throws a ValueError

Un-skips the test that checks if building an invalid type throws a ValueError #179

Workflow file for this run

# Run linting and mypy on commits and pull requests
name: Code Quality
on: [push, pull_request]
jobs:
code-quality:
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest]
python-version: ["3.8", "3.12"]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install code quality checking dependencies
run: |
python -m pip install --upgrade pip
pip install ruff mypy
- name: Run mypy
run: mypy gqlrequests
- name: Run ruff
run: ruff check .