Skip to content

Recognize GraphQL strings passed to JavaScript functions (#109) #176

Recognize GraphQL strings passed to JavaScript functions (#109)

Recognize GraphQL strings passed to JavaScript functions (#109) #176

Workflow file for this run

---
name: CI
on:
push:
branches:
- master
pull_request:
branches:
- master
jobs:
checks:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: '3.12'
cache: 'pip'
- name: Install vim
run: |
sudo add-apt-repository ppa:jonathonf/vim
sudo apt install vim
- name: Run lint
run: |
pip install -r requirements.txt
make lint
- name: Run tests
run: make test