Fix FBPCP pyre action workflow (pin to official latest pyre-check release version in github action) #1737
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: tests | |
on: | |
push: | |
branches: [ main ] | |
pull_request: | |
branches: [ main ] | |
workflow_dispatch: | |
jobs: | |
tests: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: actions/setup-python@v4 | |
with: | |
python-version: '3.8' | |
- name: Install Package | |
run: | | |
python3 -m pip install --upgrade pip | |
python3 -m pip install . | |
- name: Run Tests | |
run: | | |
./scripts/run-python-tests.sh |