We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b38a654 commit 2191433Copy full SHA for 2191433
.github/workflows/macos_test.yaml
@@ -0,0 +1,25 @@
1
+name: macos-pytest
2
+
3
+on: [push, pull_request]
4
5
+jobs:
6
+ build:
7
+ runs-on: macos-latest
8
+ strategy:
9
+ matrix:
10
+ python-version: ["3.12"]
11
12
+ steps:
13
+ - uses: actions/checkout@v4
14
+ - name: Set up Python ${{ matrix.python-version }}
15
+ uses: actions/setup-python@v5
16
+ with:
17
+ python-version: ${{ matrix.python-version }}
18
+ - name: Install dependencies
19
+ run: |
20
+ python -m pip install --upgrade pip
21
+ pip install -e .
22
+ pip install -r test_requirements.txt
23
+ - name: Test with pytest
24
25
+ pytest
0 commit comments