Skip to content

Update Victoria documentation and wrap-up protocol #467

Update Victoria documentation and wrap-up protocol

Update Victoria documentation and wrap-up protocol #467

Workflow file for this run

name: Run Tests
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
test:
name: Test on ${{ matrix.os }}
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest]
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: '3.x'
- name: Install Nox
run: |
python -m pip install --upgrade pip
pip install nox
- name: Run lint and tests
run: nox -s lint tests