We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ce5b5cb commit 1cdc430Copy full SHA for 1cdc430
.github/workflows/python-app-ci.yml
@@ -11,22 +11,21 @@ on:
11
workflow_dispatch:
12
13
jobs:
14
+ build:
15
+ runs-on: macos-latest # This uses the latest macOS runner image
16
+ steps:
17
+ - name: Install libsodium via Homebrew
18
+ run: brew install libsodium
19
+
20
test:
21
runs-on: ${{ matrix.os }}
22
strategy:
23
fail-fast: false
24
matrix:
25
os: [ macos-latest, ubuntu-latest, windows-latest ]
-
26
27
steps:
28
- uses: actions/checkout@v3
- - name: Brew install libsodium
- build:
- runs-on: macos-latest # This uses the latest macOS runner image
- steps:
- - name: Install libsodium via Homebrew
- run: brew install libsodium
29
30
- name: Set up Python 3.12.6+
31
uses: actions/setup-python@v2
32
with:
0 commit comments