Skip to content

Commit

Permalink
CI should install dependencies in a venv.
Browse files Browse the repository at this point in the history
  • Loading branch information
hongkai-dai committed Jan 13, 2025
1 parent e513061 commit 6624994
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions .github/workflows/python-app.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,13 @@ jobs:

steps:
- uses: actions/checkout@v4
- name: Set up virtual environment
run: |
python -m venv venv
source venv/bin/activate
- name: Install dependencies
run: |
pip install -e .
- name: Linting
run: flake8 ./
- name: unit test
Expand Down

0 comments on commit 6624994

Please sign in to comment.