Skip to content

Commit

Permalink
Adding python/pip to github workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
bjohnson5 committed Nov 15, 2024
1 parent d0bcbad commit 957a650
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,18 @@ jobs:
name: Build
runs-on: ubuntu-latest
steps:
- name: Set up Python
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: '3.13'
- name: Install python dependencies
run: |
pip3 --version
pip --version
pip3 install --upgrade pip
pip3 install mako
pip3 install grpcio-tools
- name: Install Protoc
uses: arduino/setup-protoc@v3
- name: Installing protoc-gen-go
Expand Down

0 comments on commit 957a650

Please sign in to comment.