Bump @types/node from 20.12.11 to 22.7.4 in /frontend/distiller #1884
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: pytest | |
on: | |
push: | |
branches: [ main ] | |
pull_request: | |
branches: [ main ] | |
jobs: | |
build: | |
defaults: | |
run: | |
working-directory: backend/faust | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Install Ubuntu packages | |
run: | | |
sudo apt-get install -y \ | |
build-essential \ | |
curl \ | |
libsnappy-dev \ | |
libbz2-dev \ | |
liblz4-dev \ | |
zlib1g-dev \ | |
python3-rocksdb | |
- name: Install dependencies | |
run: | | |
# The requirements from requirements.base.txt minus rocksdb which | |
# is install as a debian package above | |
pip install faust-streaming pydantic[dotenv]==v1.10.10 numpy | |
pip install -r requirements.job.txt -r requirements.dev.txt | |
- name: Set PYTHONPATH | |
run: | | |
echo "PYTHONPATH=$GITHUB_WORKSPACE/backend/faust" >> $GITHUB_ENV | |
- name: Run pytest | |
run: | | |
pytest |