bump fbpcp version 0.6.4 due to urllib3 version bump to 1.26.19 #1815
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: pyre | |
on: | |
push: | |
branches: [ main ] | |
pull_request: | |
branches: [ main ] | |
workflow_dispatch: | |
jobs: | |
pyre: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: actions/setup-python@v4 | |
with: | |
python-version: '3.8' | |
- name: Install Dependencies | |
run: | | |
python3 -m pip install --upgrade pip | |
python3 -m venv env | |
source env/bin/activate | |
python3 -m pip install . | |
python3 -m pip install pyre-check==0.9.19 | |
- name: Run Pyre | |
run: | | |
source env/bin/activate | |
pyre check |