We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 501ae7e commit 0936b3bCopy full SHA for 0936b3b
.github/workflows/test_macos.yml
@@ -0,0 +1,23 @@
1
+# Run tests on Mac OS.
2
+name: test_macos
3
+on: [push, pull_request]
4
+permissions: read-all
5
+jobs:
6
+ test_macos:
7
+ runs-on: ${{ matrix.os }}
8
+ strategy:
9
+ matrix:
10
+ include:
11
+ - os: macos-26
12
+ python-version: '3.14'
13
+ toxenv: 'py314'
14
+ steps:
15
+ - uses: actions/checkout@v5
16
+ - name: Install dependencies
17
+ run: |
18
+ brew update -q
19
+ brew install -q gettext gnu-sed python@${{ matrix.python-version }} tox || true
20
+ brew link --force gettext
21
+ - name: Run tests
22
23
+ tox -e ${{ matrix.toxenv }}
0 commit comments