Skip to content

Commit

Permalink
fix(ci): set up Python libraries to get the minimum versions required
Browse files Browse the repository at this point in the history
  • Loading branch information
mostaphaRoudsari committed Oct 22, 2024
1 parent 3a9d6df commit b1eaa51
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions .github/workflows/continuous-integration.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -30,10 +30,18 @@ jobs:

steps:
- uses: actions/checkout@v2
- name: set up Python
uses: actions/setup-python@v2
with:
python-version: '3.12'
- name: set up node
uses: actions/setup-node@v4
with:
node-version: 22.2.0
- name: install python dependencies
run: |
python -m pip install --upgrade pip
pip install -r dev-requirements.txt
- name: install semantic-release
run:
npm install @semantic-release/exec
Expand Down

0 comments on commit b1eaa51

Please sign in to comment.