Skip to content

Changes to dependency writers and CI tests (#1252) #2

Changes to dependency writers and CI tests (#1252)

Changes to dependency writers and CI tests (#1252) #2

Workflow file for this run

# Run tests on Mac OS.
name: test_macos
on: [push, pull_request]
permissions: read-all
jobs:
test_macos:
runs-on: ${{ matrix.os }}
strategy:
matrix:
include:
- os: macos-26
python-version: '3.14'
toxenv: 'py314'
steps:
- uses: actions/checkout@v5
- name: Install dependencies
run: |
brew update -q
brew install -q gettext gnu-sed python@${{ matrix.python-version }} tox || true
brew link --force gettext
- name: Run tests
run: |
tox -e ${{ matrix.toxenv }}