Skip to content

feat: Add BSYNC input reference path #520

feat: Add BSYNC input reference path

feat: Add BSYNC input reference path #520

Workflow file for this run

# Runs tests via nox
# Runs on pull requests to main
name: Test on pull request
on:
pull_request:
branches: [main, master]
jobs:
build:
strategy:
max-parallel: 1
matrix:
os: [ubuntu-22.04]
python-version: ["3.10"]
runs-on: "${{ matrix.os }}"
steps:
- name: Checkout
uses: actions/checkout@v2
- name: "Set up Python ${{ matrix.python-version }}"
uses: actions/setup-python@v2
with:
python-version: "${{ matrix.python-version }}"
- run: pip install "nox[uv]==2025.2.9"
- run: nox -p ${{ matrix.python-version }}