We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9e55885 commit 2dac17aCopy full SHA for 2dac17a
.github/workflows/ci.yml
@@ -54,10 +54,7 @@ jobs:
54
os:
55
- ubuntu-latest
56
- macos-latest
57
- python:
58
- - 3.11
59
- - 3.12
60
- - 3.13
+ python: ["3.11", "3.12", "3.13"]
61
steps:
62
- uses: actions/checkout@v4
63
@@ -70,7 +67,7 @@ jobs:
70
67
run: |
71
68
if [ "$RUNNER_OS" = "Linux" ]; then
72
69
sudo apt-get update && sudo apt-get install -y protobuf-compiler
73
- else
+ elif [ "$RUNNER_OS" == "macOS" ]; then
74
brew install protobuf
75
fi
76
@@ -106,7 +103,7 @@ jobs:
106
103
107
104
108
105
109
110
111
112
0 commit comments