Un-skips the test that checks if building an invalid type throws a ValueError #179
Workflow file for this run
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
# 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 . |