Skip to content

Commit a6e05cd

Browse files
committed
Enable CI-testing on macOS
1 parent e03aed6 commit a6e05cd

File tree

1 file changed

+7
-2
lines changed

1 file changed

+7
-2
lines changed

.github/workflows/main.yml

+7-2
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
strategy:
2121
matrix:
2222
crate-version: [nightly]
23-
os: [ubuntu-latest]
23+
os: [ubuntu-latest, macos-latest]
2424
sqla-version: ['1.1.18', '1.2.19', '1.3.20']
2525
python-version: [3.5, 3.6, 3.7, 3.8, 3.9]
2626

@@ -53,4 +53,9 @@ jobs:
5353
- name: Test
5454
run: |
5555
bin/flake8
56-
bin/coverage run bin/test -vv1
56+
57+
test_program=bin/test
58+
if [ ${{ matrix.os }} = "macos-latest" ]; then
59+
test_program=bin/test-quick
60+
fi
61+
bin/coverage run $test_program -vv1

0 commit comments

Comments
 (0)