adding option to return ram state in info #1554
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: Lint | |
on: [push, pull_request] | |
jobs: | |
lint: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Cancel previous run | |
uses: styfle/[email protected] | |
with: | |
access_token: ${{ github.token }} | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-go@v3 | |
with: | |
go-version: ">=1.16.0" | |
- name: Set up Python 3.11 | |
uses: actions/setup-python@v4 | |
with: | |
python-version: "3.11" | |
- name: Upgrade pip | |
run: | | |
python -m pip install --upgrade pip | |
- name: flake8 | |
run: | | |
make flake8 | |
- name: isort and yapf | |
run: | | |
make py-format | |
- name: cpplint | |
run: | | |
make cpplint | |
- name: clang-format | |
run: | | |
make clang-format | |
- name: buildifier | |
run: | | |
make buildifier | |
- name: addlicense | |
run: | | |
make addlicense | |
- name: mypy | |
run: | | |
make mypy | |
- name: docstyle | |
run: | | |
make docstyle | |
- name: spelling | |
run: | | |
make spelling |