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 +