Skip to content

Update README.md

Update README.md #78

Workflow file for this run

name: Unit tests
defaults:
run:
shell: bash -le {0}
on:
push:
repository_dispatch:
workflow_dispatch:
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ ubuntu-latest, macos-latest, macos-13, windows-latest ] # macos-latest arm64, macos-13 intel
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: 3.11
cache: 'pip'
- name: install
run: pip install .
- name: test os
run: python tests/os.py
- name: test cpu
if: always() && matrix.os != 'windows-latest'
run: |
echo "${{ matrix.os }}"
python tests/cpu.py
freebsd:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Test in FreeBSD
uses: vmactions/freebsd-vm@v1
with:
prepare: |
env ASSUME_ALWAYS_YES=yes pkg install -y python py311-pip
run: |
python -V
python -m venv venv
. venv/bin/activate
pip install .
python tests/os.py
solaris:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Test in Solaris
uses: vmactions/solaris-vm@v1
with:
run: |
python -V
python -m venv venv
source venv/bin/activate
pip install .
python tests/os.py