Skip to content

Commit

Permalink
Github step
Browse files Browse the repository at this point in the history
  • Loading branch information
gvieira committed Jan 27, 2024
1 parent 9a62ca0 commit 9f4fe1c
Showing 1 changed file with 30 additions and 0 deletions.
30 changes: 30 additions & 0 deletions .github/workflows/type-checker.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@

name: Run Type Checks

on: [push, pull_request]

permissions:
contents: write

jobs:
type-checker:
runs-on: ubuntu-latest

steps:
- name: Checkout code
uses: actions/checkout@v2

- name: Setup Python
uses: actions/setup-python@v4
with:
python-version: '3.10'

- name: Install Requirements
run: |
sudo apt-get update &&
pip install poetry &&
poetry lock &&
poetry install
- name: Run tests
run: poetry run pyright

0 comments on commit 9f4fe1c

Please sign in to comment.