Skip to content

Sync with main

Sync with main #49

Workflow file for this run

name: CodeQA
env:
PIP_DEFAULT_TIMEOUT: 100
on: [pull_request, push]
jobs:
linting:
name: Linting
runs-on: ubuntu-latest
if: github.event_name == 'push' || github.event.pull_request.head.repo.full_name != github.repository
steps:
- name: Checkout Code
uses: actions/checkout@v2
- name: Setup Python 3.9
uses: actions/setup-python@v2
with:
python-version: "3.9"
architecture: x64
- uses: actions/cache@v2
with:
path: ~/.cache/pip
key: ${{ runner.os }}-linting
restore-keys: ${{ runner.os }}-linting
- run: pip install ruff
- run: ruff check googau --config pyproject.toml