chore: bump the memory limit and request in production #595
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: Run Python Tests | |
on: [push, pull_request] | |
jobs: | |
run_python_tests: | |
runs-on: ubuntu-20.04 | |
steps: | |
- uses: hmarr/debug-action@v3 | |
- uses: actions/checkout@v4 | |
- name: Install asdf | |
uses: asdf-vm/actions/setup@v3 | |
- name: Cache asdf tools | |
uses: actions/cache@v4 | |
with: | |
path: | | |
/home/runner/.asdf | |
key: ${{ runner.os }}-${{ hashFiles('**/.tool-versions') }} | |
- name: Install required tools | |
run: | | |
sudo apt install uuid uuid-dev | |
cat .tool-versions | cut -f 1 -d ' ' | xargs -n 1 asdf plugin-add || true | |
asdf plugin-update --all | |
asdf install | |
asdf reshim | |
- name: Install python requirements | |
run: | | |
pip install -r requirements.txt | |
asdf reshim | |
- name: Run frontend unit tests | |
run: | | |
pytest src/tests/trigger_test.py | |
working-directory: ./ |