fix: adjust aws_c5.18xlarge memory size #3327
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: | |
jobs: | |
pyre: | |
runs-on: ubuntu-24.04 | |
steps: | |
- name: Setup Python | |
uses: actions/setup-python@v2 | |
with: | |
python-version: "3.10" | |
architecture: x64 | |
- name: Checkout TorchX | |
uses: actions/checkout@v2 | |
- name: Install Dependencies | |
run: | | |
set -eux | |
pip install -e .[dev] | |
lintrunner init | |
- name: Run Pyre | |
run: scripts/pyre.sh |