Skip to content
This repository was archived by the owner on Mar 31, 2026. It is now read-only.

build: reduce build time #1

build: reduce build time

build: reduce build time #1

Workflow file for this run

on:
push:
branches:
- main
pull_request:
name: Presubmit checks
jobs:
lint:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Setup Python
uses: actions/setup-python@v5
with:
python-version: 3.8
- name: Install nox
run: python -m pip install nox
- name: Check formatting
run: nox -s lint
- name: Check lint setup
run: nox -s lint_setup_py
units:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python: [3.8, 3.9, 3.10, 3.11, 3.12, 3.13]
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Setup Python
uses: actions/setup-python@v5
with:
python-version: ${{matrix.python}}
- name: Install nox
run: python -m pip install nox
- name: Run unit tests
run: nox -s unit-${{matrix.python}}