diff --git a/.github/workflows/ms5.yaml b/.github/workflows/ms5.yaml index 57e27c9..195b48d 100644 --- a/.github/workflows/ms5.yaml +++ b/.github/workflows/ms5.yaml @@ -6,7 +6,7 @@ on: jobs: test-and-lint: - runs-on: ubuntu-latest # or ubuntu-latest + runs-on: self-hosted # or ubuntu-latest strategy: matrix: python-version: ["3.10"] @@ -49,7 +49,7 @@ jobs: #Start API Container - name: Start API Container run: | - docker run -d -p 5000:5000 --memory="4096m" --name api-container api-image # Start container on port 5000 + docker run -d -p 5000:5000 --name api-container --memory=2g api-image # Start container on port 5000 #Run all Python tests in the directory - name: Run the Python tests in directory