Fix python dependencies by pinning some specific versions. #567
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: Build and Test | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
branches: | |
- main | |
jobs: | |
build-and-test: | |
name: Build prod | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out Git repository | |
uses: actions/checkout@v2 | |
- name: Setup python | |
uses: actions/setup-python@v2 | |
with: | |
python-version: '3.10' | |
- name: Yarn install | |
run: yarn | |
- name: Run Python generation | |
run: cd python && ./generate.sh && cd .. | |
- name: Build packages | |
run: yarn build:packages | |
- name: Check packages | |
run: yarn check:packages | |
- name: Check types | |
run: yarn tsc | |
- name: Test | |
run: yarn test | |
- name: Build app | |
run: yarn build:app | |
- name: Build runtime | |
run: yarn build:runtime |