Skip to content

Build develop

Build develop #270

Workflow file for this run

name: Build
run-name: Build ${{ github.ref_name }}
on:
push:
branches: [ main, develop ]
pull_request:
branches: [ main, develop ]
workflow_dispatch:
workflow_call:
permissions:
contents: read
issues: none
pull-requests: none
jobs:
build:
name: Build
env:
FORCE_COLOR: 1
PYTHONUNBUFFERED: 1
PYTHONDONTWRITEBYTECODE: 1
strategy:
fail-fast: false
matrix:
os: [ ubuntu-latest ]
python-version: [ "3.9", "3.11", "3.12", "3.13" ]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v6
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v6
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: make install
- name: Test
run: make test
validate:
name: Validate
uses: ./.github/workflows/validate.yml
secrets: inherit