Merge pull request #171 from Ostorlab/feature/Add_GraphQL_http_method… #284
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
name: Lint And Format Checker. | |
on: | |
pull_request: | |
branches: [ "*" ] | |
push: | |
branches: [ "master" ] | |
jobs: | |
ruff: | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
matrix: | |
python-version: [ "3.11" ] | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set up Python ${{ matrix.python-version }} | |
uses: actions/setup-python@v4 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Checking code formatting. | |
uses: chartboost/ruff-action@v1 | |
with: | |
args: format --check | |
- name: Running linter. | |
uses: chartboost/ruff-action@v1 |