We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e779fa9 commit 590cc11Copy full SHA for 590cc11
.github/workflows/test.yml
@@ -18,14 +18,20 @@ jobs:
18
fail-fast: false # Continue running jobs even if one fails
19
20
steps:
21
- - name: Checkout repository
22
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 #v4.1.17
+ - name: Set up Docker (macOS)
+ if: ${{ startsWith(matrix.os, 'macos') }}
23
+ run: |
24
+ brew install colima
25
+ colima start
26
27
- name: Set up PDM
28
uses: pdm-project/setup-pdm@568ddd69406b30de1774ec0044b73ae06e716aa4 # v4.1
29
with:
30
python-version: ${{ matrix.python-version }}
31
32
+ - name: Checkout repository
33
+ uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 #v4.1.17
34
+
35
- name: Install dependencies
36
run: |
37
pdm sync --dev
0 commit comments