Bump @mui/x-date-pickers from 5.0.20 to 6.11.0 in /frontend/distiller #1311
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: pytest | |
on: | |
push: | |
branches: [ main ] | |
pull_request: | |
branches: [ main ] | |
jobs: | |
build: | |
defaults: | |
run: | |
working-directory: backend/faust | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
python-version: ["3.9"] | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Set up Python ${{ matrix.python-version }} | |
uses: actions/setup-python@v2 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Install Ubuntu packages | |
run: | | |
sudo apt-get install -y \ | |
build-essential \ | |
curl \ | |
libsnappy-dev \ | |
libbz2-dev \ | |
liblz4-dev \ | |
zlib1g-dev \ | |
librocksdb-dev | |
- name: Install dependencies | |
run: | | |
pip install -r requirements.base.txt -r requirements.job.txt -r requirements.dev.txt | |
# Install authlib separately as its not include in requirements as we are | |
# currently using a patched version in the docker image. | |
pip install authlib | |
- name: Set PYTHONPATH | |
run: | | |
echo "PYTHONPATH=$GITHUB_WORKSPACE/backend/faust" >> $GITHUB_ENV | |
- name: Run pytest | |
run: | | |
pytest |