Skip to content

Fix for invalid RRULES returned by the Google calendar API (#327) #125

Fix for invalid RRULES returned by the Google calendar API (#327)

Fix for invalid RRULES returned by the Google calendar API (#327) #125

Workflow file for this run

name: Lint
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.10", "3.11"]
steps:
- uses: actions/checkout@3df4ab11eba7bda6032a0b82a6bb43b11571feac # v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip3 install -r requirements.txt
- name: Lint with ruff
run: |
ruff check --format=github .