Skip to content

Commit

Permalink
add python
Browse files Browse the repository at this point in the history
  • Loading branch information
andrewsy-opal committed Nov 26, 2024
1 parent c1f691f commit a2e78d3
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions .github/workflows/autogen-remote-changes.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,13 +10,25 @@ on: [push, pull_request]
jobs:
update-sdk:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.11"]
steps:
- name: Checkout repository
run: |
git clone https://github.com/${{ github.repository }} repo
cd repo
git config --global user.name "github-actions[bot]"
git config --global user.email "github-actions[bot]@users.noreply.github.com"
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
cd repo
python -m pip install --upgrade pip
pip install -r requirements.txt
- name: Pull and generate SDK
run: |
cd repo
Expand Down

0 comments on commit a2e78d3

Please sign in to comment.