Skip to content

chore(ci): use workflow GH token for MacOS tests (#11) #15

chore(ci): use workflow GH token for MacOS tests (#11)

chore(ci): use workflow GH token for MacOS tests (#11) #15

Workflow file for this run

# This workflow runs the unit tests in the Python script.
name: Unit tests
on:
push:
branches: [main]
pull_request:
branches: [main]
workflow_dispatch:
jobs:
unit:
name: Test
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Check Python version
run: python --version
- name: Run unit tests
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: ./install.py --test-only --verbose