From 7e9379b8ee1d1baa1d86d31b3890aee3bd247ba7 Mon Sep 17 00:00:00 2001 From: Aditya Pandhare Date: Fri, 3 Nov 2023 10:51:16 -0400 Subject: [PATCH] Update and rename node.js.yml to python.yml --- .github/workflows/{node.js.yml => python.yml} | 25 ++++++++----------- 1 file changed, 10 insertions(+), 15 deletions(-) rename .github/workflows/{node.js.yml => python.yml} (51%) diff --git a/.github/workflows/node.js.yml b/.github/workflows/python.yml similarity index 51% rename from .github/workflows/node.js.yml rename to .github/workflows/python.yml index 840f1d7..394e272 100644 --- a/.github/workflows/node.js.yml +++ b/.github/workflows/python.yml @@ -11,20 +11,15 @@ on: jobs: build: - runs-on: ubuntu-latest - - strategy: - matrix: - node-version: [14.x, 16.x, 18.x] - # See supported Node.js release schedule at https://nodejs.org/en/about/releases/ - steps: - - uses: actions/checkout@v3 - - name: Use Node.js ${{ matrix.node-version }} - uses: actions/setup-node@v3 - with: - node-version: ${{ matrix.node-version }} - cache: 'npm' - - run: npm ci - - run: npm test + - name: Set up Python + uses: actions/setup-python@v2 + with: + python-version: 3.x # Specify the Python version you need + - name: Install dependencies + run: | + pip install pipenv + pipenv install --dev + # Add more steps for your tests and other tasks +