Skip to content

chore: make all files have LF line endrings #100

chore: make all files have LF line endrings

chore: make all files have LF line endrings #100

Workflow file for this run

name: Unit Tests
on:
pull_request:
branches:
- master
push:
jobs:
validate:
strategy:
fail-fast: false
matrix:
python-version: ["3.8", "3.12"]
runs-on: "ubuntu-latest"
steps:
- uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- uses: actions/cache@v2
with:
path: ~/.cache/pip
key: pip_cache
- name: Install depencency
run: |
pip install gql gql[aiohttp] gql[websockets] graphql-core asyncio-atexit pytest pytest-timeout
- name: Pytest
run: |
python -m pytest tests