Skip to content

feat: release v1.0 web agent workflow #1

feat: release v1.0 web agent workflow

feat: release v1.0 web agent workflow #1

Workflow file for this run

name: Tests
on:
push:
pull_request:
permissions:
contents: read
jobs:
unittest:
name: Python ${{ matrix.python-version }} on ${{ matrix.os }}
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, macos-latest]
python-version: ["3.10", "3.12"]
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Run unittest suite
env:
PYTHONDONTWRITEBYTECODE: "1"
run: python -m unittest discover -s tests