Skip to content

[Test] Create cpu_info.yml #4270

[Test] Create cpu_info.yml

[Test] Create cpu_info.yml #4270

Workflow file for this run

name: Lint
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
workflow_dispatch:
jobs:
cpu_info:
name: Get CPU info on runners
runs-on: ubuntu-latest
steps:
- name: Get CPU info
run: |
lscpu | egrep 'Model name|Socket|Thread|NUMA|CPU\(s\)'
ufmt:
name: Code formatting and sorting with ufmt
runs-on: ubuntu-latest
strategy:
fail-fast: false
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: "3.10"
- name: Install dependencies
run: |
# pin dependencies to match Meta-internal versions
pip install -r requirements-fmt.txt
pip install ufmt
- name: ufmt
run: |
ufmt diff .
flake8:
name: Lint with flake8
runs-on: ubuntu-latest
strategy:
fail-fast: false
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: "3.10"
- name: Install dependencies
run: |
pip install flake8 flake8-docstrings
- name: Flake8
run: |
flake8