Skip to content

[release] Bump EnvPool assets to 0.3.0 (#414) #3284

[release] Bump EnvPool assets to 0.3.0 (#414)

[release] Bump EnvPool assets to 0.3.0 (#414) #3284

Workflow file for this run

name: Lint
on:
push:
branches:
- main
pull_request:
jobs:
lint:
runs-on: ubuntu-latest
steps:
- name: Cancel previous run
uses: styfle/cancel-workflow-action@0.11.0
with:
access_token: ${{ github.token }}
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version: ">=1.16.0"
- name: Set up Python 3.12
uses: actions/setup-python@v5
with:
python-version: "3.12"
- name: Upgrade pip
run: |
python -m pip install --upgrade pip
- name: ruff check
run: |
make ruff
- name: ruff format
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