implement venv in uv + fix build scripts #182
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: pr_to_master | |
on: | |
pull_request: | |
branches: | |
- master | |
jobs: | |
pr_to_master: | |
name: pr_to_master | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out | |
uses: actions/checkout@master | |
- name: Set up Node.js | |
uses: actions/setup-node@v3 | |
with: | |
node-version: '20' | |
- name: Set up Python | |
uses: actions/setup-python@v2 | |
with: | |
python-version: '3.11' | |
- name: setup python env | |
run: chmod +x utils/setup_env.sh && source utils/setup_env.sh | |
- name: python basics | |
run: make build | |
- name: build pipeline | |
run: make run |