Skip to content

Create build_docs.yaml #54

Create build_docs.yaml

Create build_docs.yaml #54

Workflow file for this run

name: Install
on:
push:
branches: 'main'
pull_request:
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ['3.7', '3.13'] # Specify the Python versions you want to test
steps:
- name: Check out the repository code
uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python3 -m pip install --upgrade pip
python3 -m pip install -e .
- name: Test run
run: brassy -h