Skip to content

Commit

Permalink
Install dependencies in ci
Browse files Browse the repository at this point in the history
  • Loading branch information
otto-ifak committed Jul 19, 2024
1 parent 3c660b2 commit 93abad1
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements-dev.txt
pip install -r requirements.txt -r requirements-dev.txt
- name: Create regex parser
run: ./bin/generate.sh
- name: Run tests
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements-dev.txt
pip install -r requirements.txt -r requirements-dev.txt
- name: Create regex parser
run: ./bin/generate.sh
- name: Run tests
Expand Down

0 comments on commit 93abad1

Please sign in to comment.