Skip to content

change FixedPointMath functions to be directly importable (#33) #80

change FixedPointMath functions to be directly importable (#33)

change FixedPointMath functions to be directly importable (#33) #80

Workflow file for this run

name: static
on:
push:
branches:
- main
pull_request:
jobs:
build:
name: static
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
token: ${{ secrets.GITHUB_TOKEN}}
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: "3.10"
cache: "pip"
token: ${{ secrets.GITHUB_TOKEN}}
- run: |
python -m pip install --upgrade pip
python -m pip install -r requirements.txt
python -m pip install -r requirements-dev.txt
- name: Analyzing code with pyright
run: python -m pyright $(git ls-files '*.py')