Skip to content

Commit

Permalink
Update and rename node.js.yml to python.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
awesomeadi00 authored Nov 3, 2023
1 parent 6e23d99 commit 7e9379b
Showing 1 changed file with 10 additions and 15 deletions.
25 changes: 10 additions & 15 deletions .github/workflows/node.js.yml → .github/workflows/python.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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

0 comments on commit 7e9379b

Please sign in to comment.