Skip to content
This repository has been archived by the owner on Sep 11, 2024. It is now read-only.

Bump pyright from 1.1.352 to 1.1.365 #495

Bump pyright from 1.1.352 to 1.1.365

Bump pyright from 1.1.352 to 1.1.365 #495

Workflow file for this run

name: fixme-check
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
test:
runs-on: ubuntu-latest
timeout-minutes: 10
steps:
- name: Check out repository code
uses: actions/checkout@v4
- name: Check code contains no FIXMEs
run: |
git grep -r --no-color ${case_sensitive} --line-number -e "FIXME" :^.github
if [[ $? -eq 0 ]]; then
# if we found any FIXME entries in checked in files, fail on main
exit 1
else
exit 0
fi
shell: bash {0}