Skip to content

Fix NVM issues

Fix NVM issues #101

Workflow file for this run

name: on-pr-into-main
env:
PYTHON_VERSION: 3.9
on:
pull_request:
branches:
- main
jobs:
run-pr-checks:
runs-on: ubuntu-24.04
steps:
- name: Checkout the repository
uses: actions/checkout@v4
- name: Set up python
uses: actions/setup-python@v5
with:
python-version: ${{ env.PYTHON_VERSION }}
- name: Install and upgrade pre-requisites
run: |
python3.9 -m pip install --upgrade pip wheel setuptools
sudo apt-get update
sudo apt-get install -y libcurl4-openssl-dev
sudo apt-get install -y libssl-dev
- name: Bootstrap Python app and run tests
run: |
export ENVIRONMENT='local'
set -eu
make bootstrap-for-tests
make test