Skip to content

Fix python dependencies by pinning some specific versions. #567

Fix python dependencies by pinning some specific versions.

Fix python dependencies by pinning some specific versions. #567

Workflow file for this run

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